@stdlib/assert
Version:
Standard assertion utilities.
25 lines (18 loc) • 364 B
Plain Text
{{alias}}( value )
Tests if a value is undefined.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is undefined.
Examples
--------
> var bool = {{alias}}( void 0 )
true
> bool = {{alias}}( null )
false
See Also
--------