is-nil
Version:
Checks if the given value is null or undefined
48 lines (30 loc) • 1.44 kB
Markdown
if the given value is null or undefined.
[](https://github.com/gearcase/is-nil/blob/master/LICENSE)
[](https://travis-ci.org/gearcase/is-nil)
[](https://coveralls.io/github/gearcase/is-nil)
```
$ npm install --save is-nil
```
```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
```
- [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.
Pull requests and stars are highly welcome.
For bugs and feature requests, please [create an issue](https://github.com/gearcase/is-nil/issues/new).
> Checks