# is-unnull

> Returns true if the given value is unnull.

Latest version **1.0.0** (published 2021-08-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-unnull
pnpm add is-unnull
yarn add is-unnull
bun add is-unnull
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-08-25 |
| First published | 2021-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Skelly |
| Maintainers | vtheskeleton |
| Keywords | unnull |

## Links

- npm: https://www.npmjs.com/package/is-unnull
- Repository: https://github.com/vtheskeleton/is-unnull
- Homepage: https://github.com/vtheskeleton/is-unnull#readme
- Issues: https://github.com/vtheskeleton/is-unnull/issues
- npm.io page: https://npm.io/package/is-unnull

## Dependencies (1)

- [is-null](https://npm.io/package/is-null.md) ^1.0.1

## Recent versions

- 1.0.0 (latest) — 2021-08-25

## README

# is-unnull

> Return true if the given value is unnull.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save is-unnull
```

## Usage

```js
var isUnnull = require('is-unnull');

isUnnull(0);
//=> true
isUnnull(null);
//=> false
isUnnull("2");
//=> true
isUnnull(undefined);
//=> true
```

---
_Source: https://npm.io/package/is-unnull · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
