mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 11:27:59 +00:00
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
/**
|
|
* @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 declare function isNull(value?: unknown): value is null;
|