
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@stdlib/assert-is-integer-array
Advanced tools
Test if a value is an array-like object containing only integers.
Test if a value is an array-like object containing only integers.
npm install @stdlib/assert-is-integer-array
var isIntegerArray = require( '@stdlib/assert-is-integer-array' );
Tests if a value is an array-like object containing only integer values.
var Number = require( '@stdlib/number-ctor' );
var bool = isIntegerArray( [ -3, new Number(3) ] );
// returns true
bool = isIntegerArray( [ -3, 'abc' ] );
// returns false
Tests if a value is an array-like object containing only primitive integer values.
var Number = require( '@stdlib/number-ctor' );
var bool = isIntegerArray.primitives( [ -1.0, 0.0, 4.0 ] );
// returns true
bool = isIntegerArray.primitives( [ -1.0, 2.2 ] );
// returns false
bool = isIntegerArray.primitives( [ -3.0, new Number(2.0) ] );
// returns false
Tests if a value is an array-like object containing only Number objects having integer values.
var Number = require( '@stdlib/number-ctor' );
var bool = isIntegerArray.objects( [ new Number(-1.0), new Number(2.0) ] );
// returns true
bool = isIntegerArray.objects( [ -1.0, 0.0, 1.0 ] );
// returns false
bool = isIntegerArray.objects( [ -3.0, new Number(1.0) ] );
// returns false
var Number = require( '@stdlib/number-ctor' );
var isIntegerArray = require( '@stdlib/assert-is-integer-array' );
var bool = isIntegerArray( [ -5, 0, 2, 5 ] );
// returns true
bool = isIntegerArray( [ -4, -3, 1, 3 ] );
// returns true
bool = isIntegerArray( [ -1, new Number( -6 ), 2 ] );
// returns true
bool = isIntegerArray( [ -1, 'abc', 3 ] );
// returns false
bool = isIntegerArray( [ -2.3, 0, 3 ] );
// returns false
bool = isIntegerArray( [] );
// returns false
@stdlib/assert/is-array: test if a value is an 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 containing only integers.
The npm package @stdlib/assert-is-integer-array receives a total of 3,500 weekly downloads. As such, @stdlib/assert-is-integer-array popularity was classified as popular.
We found that @stdlib/assert-is-integer-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.

Security News
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.