Skip to content

Latest commit

 

History

History
67 lines (39 loc) · 1001 Bytes

File metadata and controls

67 lines (39 loc) · 1001 Bytes

isNullArray

Test if a value is an array-like object containing only null values.

Usage

var isNullArray = require( '@stdlib/utils/is-null-array' );

isNullArray( value )

Tests if a value is an array-like object containing only null values.

var bool = isNullArray( [ null, null, null ] );
// returns true

bool = isNullArray( [ null, NaN, null ] );
// returns false

Examples

var isNullArray = require( '@stdlib/utils/is-null-array' );

var bool = isNullArray( [ null ] );
// returns true

bool = isNullArray( [ null, null, null ] );
// returns true

bool = isNullArray( null );
// returns false

bool = isNullArray( 'beep' );
// returns false

bool = isNullArray( [ null, 'boop' ] );
// returns false

bool = isNullArray( [] );
// returns false