0.2.2 • Published 1 year ago
@stdlib/assert-is-boolean-array v0.2.2
isBooleanArray
Test if a value is an array-like object of booleans.
Installation
npm install @stdlib/assert-is-boolean-arrayUsage
var isBooleanArray = require( '@stdlib/assert-is-boolean-array' );isBooleanArray( value )
Tests if a value is an array-like object of booleans.
var bool = isBooleanArray( [ true, false, false, true ] );
// returns trueisBooleanArray.primitives( value )
Tests if a value is an array-like object containing only boolean primitives.
var Boolean = require( '@stdlib/boolean-ctor' );
var bool = isBooleanArray.primitives( [ true, false ] );
// returns true
bool = isBooleanArray.primitives( [ false, new Boolean( true ) ] );
// returns falseisBooleanArray.objects( value )
Tests if a value is an array-like object containing only Boolean objects.
var Boolean = require( '@stdlib/boolean-ctor' );
var bool = isBooleanArray.objects( [ new Boolean( false ), new Boolean( true ) ] );
// returns true
bool = isBooleanArray.objects( [ new Boolean( false ), true ] );
// returns falseExamples
var Boolean = require( '@stdlib/boolean-ctor' );
var isBooleanArray = require( '@stdlib/assert-is-boolean-array' );
var bool = isBooleanArray( [ true, false ] );
// returns true
bool = isBooleanArray( [ true, new Boolean( false ) ] );
// returns true
bool = isBooleanArray( [ true, 'false' ] );
// returns false
bool = isBooleanArray( [] );
// returns false
bool = isBooleanArray( null );
// returns falseNotice
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.