# is-nil

> Checks if the given value is null or undefined

Latest version **1.0.1** (published 2016-04-15) · MIT license · 0 weekly downloads

## Install

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

## 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.1 |
| Published | 2016-04-15 |
| First published | 2016-04-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | bubkoo |
| Maintainers | bubkoo |
| Keywords | check, checks, is, nil, detect, value, type, null, undefined, void |

## Links

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

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-04-15
- 1.0.0 — 2016-04-13
- 0.0.0 — 2016-04-12

## README

# is-nil

> Checks if the given value is null or undefined. 

[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/gearcase/is-nil/blob/master/LICENSE)

[![build:?](https://img.shields.io/travis/gearcase/is-nil/master.svg?style=flat-square)](https://travis-ci.org/gearcase/is-nil)
[![coverage:?](https://img.shields.io/coveralls/gearcase/is-nil/master.svg?style=flat-square)](https://coveralls.io/github/gearcase/is-nil)


## Install

```
$ npm install --save is-nil 
```


## Usage

```js
var isNil = require('is-nil');

isNil(null);     // => true
isNil(void 0);   // => true

isNil('abc');    // => false
isNil(123);      // => false
isNil(true);     // => false
isNil(false);    // => false
isNil({});       // => false
isNil([]);       // => false
isNil(NAN);      // => false
```

## Related

- [is-null](https://github.com/gearcase/is-null) - Checks if the given value is null.
- [is-window](https://github.com/gearcase/is-window) - Checks if the given value is a window object.
- [is-native](https://github.com/gearcase/is-native) - Checks if the given value is a native function.
- [is-array-like](https://github.com/gearcase/is-array-like) - Checks if the given value is an array or an array-like object.


## Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please [create an issue](https://github.com/gearcase/is-nil/issues/new).

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