@stdlib/assert-is-undefined
v0.2.2
Published
Test if a value is undefined.
Downloads
1,244
Readme
isUndefined
Test if a value is undefined.
Installation
npm install @stdlib/assert-is-undefined
Usage
var isUndefined = require( '@stdlib/assert-is-undefined' );
isUndefined( value )
Tests if a value
is undefined
.
var bool = isUndefined( undefined );
// returns true
Examples
var isUndefined = require( '@stdlib/assert-is-undefined' );
var bool;
var x;
bool = isUndefined( x );
// returns true
bool = isUndefined( undefined );
// returns true
bool = isUndefined( void 0 );
// returns true
bool = isUndefined( 'beep' );
// returns false
bool = isUndefined( 5 );
// returns false
bool = isUndefined( null );
// returns false
bool = isUndefined( true );
// returns false
bool = isUndefined( {} );
// returns false
bool = isUndefined( [] );
// returns false
bool = isUndefined( function foo() {} );
// returns false
See Also
@stdlib/assert-is-null
: test if a value is null.@stdlib/assert-is-undefined-or-null
: test if a value is undefined or null.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.