time-to-botec/squiggle/node_modules/@stdlib/assert/is-undefined/docs/repl.txt

25 lines
364 B
Plaintext
Raw Normal View History

{{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
--------