UNPKG

@tetcoin/util

Version:
16 lines (15 loc) 373 B
/** * @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;