mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-05-01 06:37:57 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @name isUndefined
|
||||
* @summary Tests for a `undefined` values.
|
||||
* @description
|
||||
* Checks to see if the input value is `undefined`.
|
||||
* @example
|
||||
* <BR>
|
||||
*
|
||||
* ```javascript
|
||||
* import { isUndefined } from '@pezkuwi/util';
|
||||
*
|
||||
* console.log('isUndefined', isUndefined(void(0))); // => true
|
||||
* ```
|
||||
*/
|
||||
export declare function isUndefined(value?: unknown): value is undefined;
|
||||
Reference in New Issue
Block a user