
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
@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.
0.0.7 (2022-02-16)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.6">FAQs
Test if a value is an array-like object of numbers.
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 0 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.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.