@stdlib/assert-is-finite-array v0.2.2
isFiniteArray
Test if a value is an array-like object containing only finite numbers.
Installation
npm install @stdlib/assert-is-finite-arrayUsage
var isFiniteArray = require( '@stdlib/assert-is-finite-array' );isFiniteArray( value )
Tests if a value is an array-like object containing only finite numbers.
var Number = require( '@stdlib/number-ctor' );
var bool = isFiniteArray( [ -3.0, new Number(3.0) ] );
// returns true
bool = isFiniteArray( [ -3.0, 'abc' ] );
// returns false
bool = isFiniteArray( [ -3.0, 1.0/0.0 ] );
// returns falseisFiniteArray.primitives( value )
Tests if a value is an array-like object containing only primitive finite numbers.
var Number = require( '@stdlib/number-ctor' );
var bool = isFiniteArray.primitives( [ -1.0, 0.0, 4.5 ] );
// returns true
bool = isFiniteArray.primitives( [ -1.0, 1.0/0.0 ] );
// returns false
bool = isFiniteArray.primitives( [ -3.0, new Number(2.0) ] );
// returns falseisFiniteArray.objects( value )
Tests if a value is an array-like object containing only Number objects having finite values.
var Number = require( '@stdlib/number-ctor' );
var bool = isFiniteArray.objects( [ new Number(-1.0), new Number(2.0) ] );
// returns true
bool = isFiniteArray.objects( [ -1.0, 0.0, 1.0 ] );
// returns false
bool = isFiniteArray.objects( [ -3.0, new Number(1.0) ] );
// returns falseExamples
var Number = require( '@stdlib/number-ctor' );
var isFiniteArray = require( '@stdlib/assert-is-finite-array' );
var bool = isFiniteArray( [ -5.0, 0.0, 2.0, 5.0 ] );
// returns true
bool = isFiniteArray( [ -4.0, -3.14, 1.0, 3.14 ] );
// returns true
bool = isFiniteArray( [ -1.0, new Number( -6.0 ), 2.0 ] );
// returns true
bool = isFiniteArray( [ -1.0, 'abc', 3.0 ] );
// returns false
bool = isFiniteArray( [ -2.3, 1.0/0.0, 3.0 ] );
// returns false
bool = isFiniteArray( [] );
// returns falseSee Also
@stdlib/assert-is-finite: test if a value is a finite number.@stdlib/assert-is-infinite: test if a value is an infinite number.
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.