0.2.2 • Published 1 year ago
@stdlib/assert-is-number-array v0.2.2
isNumberArray
Test if a value is an array-like object of numbers.
Installation
npm install @stdlib/assert-is-number-arrayUsage
var isNumberArray = require( '@stdlib/assert-is-number-array' );isNumberArray( value )
Tests if a value is an array-like object of numbers.
var bool = isNumberArray( [ 1, 2, 3, 4 ] );
// returns trueisNumberArray.primitives( value )
Tests if a value is an array-like object containing only number primitives.
var Number = require( '@stdlib/number-ctor' );
var bool = isNumberArray.primitives( [ 1, 2, 3 ] );
// returns true
bool = isNumberArray.primitives( [ 1, new Number( 2 ), 3 ] );
// returns falseisNumberArray.objects( value )
Tests if a value is an array-like object containing only Number objects.
var Number = require( '@stdlib/number-ctor' );
var bool = isNumberArray.objects( [ new Number( 1 ), new Number( 2 ) ] );
// returns true
bool = isNumberArray.objects( [ new Number( 1 ), 2 ] );
// returns falseExamples
var Number = require( '@stdlib/number-ctor' );
var isNumberArray = require( '@stdlib/assert-is-number-array' );
var bool = isNumberArray( [ 3.14 ] );
// returns true
bool = isNumberArray( [ NaN ] );
// returns true
bool = isNumberArray( [ 1, 2, 3 ] );
// returns true
bool = isNumberArray( [ new Number( 3.14 ), 2, 3 ] );
// returns true
bool = isNumberArray( 3.14 );
// returns false
bool = isNumberArray( [] );
// returns false
bool = isNumberArray( [ '1', 2 ] );
// returns falseSee Also
@stdlib/assert-is-array: test if a value is an array.@stdlib/assert-is-number: test if a value is a number.@stdlib/assert-is-numeric-array: test if a value is a numeric array.
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.