Files
pezkuwi-common/packages/util/is/null.js
T

18 lines
331 B
JavaScript

/**
* @name isNull
* @summary Tests for a `null` values.
* @description
* Checks to see if the input value is `null`.
* @example
* <BR>
*
* ```javascript
* import { isNull } from '@pezkuwi/util';
*
* console.log('isNull', isNull(null)); // => true
* ```
*/
export function isNull(value) {
return value === null;
}