@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
16 lines (15 loc) • 373 B
TypeScript
/**
* @name isUndefined
* @summary Tests for a `undefined` values.
* @description
* Checks to see if the input value is `undefined`.
* @example
* <BR>
*
* ```javascript
* import { isUndefined } from '@tetcoin/util';
*
* console.log('isUndefined', isUndefined(void(0))); // => true
* ```
*/
export default function isUndefined(value?: any): value is undefined;