@stdlib/assert-is-undefined-or-null
v0.2.2
Published
Test if a value is undefined or null.
Downloads
169
Readme
isUndefinedOrNull
Test if a value is undefined or null.
Installation
npm install @stdlib/assert-is-undefined-or-null
Usage
var isUndefinedOrNull = require( '@stdlib/assert-is-undefined-or-null' );
isUndefinedOrNull( value )
Tests if a value
is undefined
or null
.
var bool = isUndefinedOrNull( undefined );
// returns true
bool = isUndefinedOrNull( null );
// returns true
Examples
var isUndefinedOrNull = require( '@stdlib/assert-is-undefined-or-null' );
var bool;
var x;
bool = isUndefinedOrNull( x );
// returns true
bool = isUndefinedOrNull( undefined );
// returns true
bool = isUndefinedOrNull( void 0 );
// returns true
bool = isUndefinedOrNull( null );
// returns true
bool = isUndefinedOrNull( 'beep' );
// returns false
bool = isUndefinedOrNull( 5 );
// returns false
bool = isUndefinedOrNull( true );
// returns false
bool = isUndefinedOrNull( {} );
// returns false
bool = isUndefinedOrNull( [] );
// returns false
bool = isUndefinedOrNull( function foo() {} );
// returns false
See Also
@stdlib/assert-is-null
: test if a value is null.@stdlib/assert-is-undefined
: test if a value is undefined.
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.