Package Exports
- is-nil-x
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-nil-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-nil-x
ES3 isNil module.
Version: 1.0.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
module.exports(value)
⇒ boolean
⏏
Checks if value
is null
or undefined
.
Kind: Exported function
Returns: boolean
- Returns true
if value
is nullish, else false
.
Param | Type | Description |
---|---|---|
value | * |
The value to check. |
Example
_.isNil(null);
// => true
_.isNil(void 0);
// => true
_.isNil(NaN);
// => false