
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
@stdlib/assert-is-number-array
Advanced tools
Test if a value is an array-like object of numbers.
npm install @stdlib/assert-is-number-array
var isNumberArray = require( '@stdlib/assert-is-number-array' );
Tests if a value is an array-like object of numbers.
var bool = isNumberArray( [ 1, 2, 3, 4 ] );
// returns true
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 false
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 false
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 false
@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.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.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.
FAQs
Test if a value is an array-like object of numbers.
The npm package @stdlib/assert-is-number-array receives a total of 9,976 weekly downloads. As such, @stdlib/assert-is-number-array popularity was classified as popular.
We found that @stdlib/assert-is-number-array demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.