Test if a value is an array-like object containing only nonpositive integers.
npm install @stdlib/assert-is-nonpositive-integer-array
var isNonPositiveIntegerArray = require( '@stdlib/assert-is-nonpositive-integer-array' );
Tests if a value
is an array-like object containing only nonpositive integer
values.
var Number = require( '@stdlib/number-ctor' );
var bool = isNonPositiveIntegerArray( [ -3, new Number(-3) ] );
// returns true
bool = isNonPositiveIntegerArray( [ -3, '3.0' ] );
// returns false
Tests if a value
is an array-like object containing only nonpositive primitive integer
values.
var Number = require( '@stdlib/number-ctor' );
var bool = isNonPositiveIntegerArray.primitives( [ -1.0, -10.0 ] );
// returns true
bool = isNonPositiveIntegerArray.primitives( [ -1.0, 0.0, -10.0 ] );
// returns true
bool = isNonPositiveIntegerArray.primitives( [ -3.0, new Number(-1.0) ] );
// returns false
Tests if a value
is an array-like object containing only Number
objects holding nonpositive integer
values.
var Number = require( '@stdlib/number-ctor' );
var bool = isNonPositiveIntegerArray.objects( [ new Number(-1.0), new Number(-10.0) ] );
// returns true
bool = isNonPositiveIntegerArray.objects( [ -1.0, 0.0, -10.0 ] );
// returns false
bool = isNonPositiveIntegerArray.objects( [ -3.0, new Number(-1.0) ] );
// returns false
var Number = require( '@stdlib/number-ctor' );
var isNonPositiveIntegerArray = require( '@stdlib/assert-is-nonpositive-integer-array' );
var bool = isNonPositiveIntegerArray( [ -5, -2, -3 ] );
// returns true
bool = isNonPositiveIntegerArray( [ -4, -3, -2, -1 ] );
// returns true
bool = isNonPositiveIntegerArray( [ -1, new Number( -6 ), -3 ] );
// returns true
bool = isNonPositiveIntegerArray( [ -3, -2, -1, 0 ] );
// returns true
bool = isNonPositiveIntegerArray( [ -3, -2, -1, 0, 2 ] );
// returns false
bool = isNonPositiveIntegerArray( [ -1, 'abc', -3 ] );
// returns false
bool = isNonPositiveIntegerArray( [ -2.3, -1, -3 ] );
// returns false
bool = isNonPositiveIntegerArray( [] );
// returns false
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-2021. The Stdlib Authors.