Skip to content

Files

Latest commit

388c1af · Nov 13, 2016

History

History

is-empty-array

isEmptyArray

Test if a value is an empty array.

Usage

var isEmptyArray = require( '@stdlib/utils/is-empty-array' );

isEmptyArray( value )

Tests if a value is an empty array.

var bool = isEmptyArray( [] );
// returns true

Examples

var isEmptyArray = require( '@stdlib/utils/is-empty-array' );

var bool = isEmptyArray( [] );
// returns true

bool = isEmptyArray( new Array() );
// returns true

bool = isEmptyArray( [ 1, 2, 3, 4 ] );
// returns false

bool = isEmptyArray( {} );
// returns false