Test if a value is an empty array.
var isEmptyArray = require( '@stdlib/assert/is-empty-array' );
Tests if a value is an empty array
.
var bool = isEmptyArray( [] );
// returns true
var isEmptyArray = require( '@stdlib/assert/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
@stdlib/assert/is-array
: test if a value is an array.@stdlib/assert/is-empty-array-like-object
: test if a value is an empty array-like object.@stdlib/assert/is-empty-collection
: test if a value is an empty collection.