HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/share/opensearch-dashboards/node_modules/is-nil/README.md
# 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).