JSPM

@stdlib/assert-is-nonpositive-number-array

0.0.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q48712F
  • License Apache-2.0

Test if a value is an array-like object containing only nonpositive numbers.

Package Exports

  • @stdlib/assert-is-nonpositive-number-array
  • @stdlib/assert-is-nonpositive-number-array/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/assert-is-nonpositive-number-array) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

isNonPositiveNumberArray

NPM version Build Status Coverage Status

Test if a value is an array-like object containing only nonpositive numbers.

Installation

npm install @stdlib/assert-is-nonpositive-number-array

Usage

var isNonPositiveNumberArray = require( '@stdlib/assert-is-nonpositive-number-array' );

isNonPositiveNumberArray( value )

Tests if a value is an array-like object containing only nonpositive numbers.

var Number = require( '@stdlib/number-ctor' );

var bool = isNonPositiveNumberArray( [ -3.0, new Number(-3.0) ] );
// returns true

bool = isNonPositiveNumberArray( [ -3.0, '-3.0' ] );
// returns false

isNonPositiveNumberArray.primitives( value )

Tests if a value is an array-like object array containing only primitive nonpositive numbers.

var Number = require( '@stdlib/number-ctor' );

var bool = isNonPositiveNumberArray.primitives( [ -1.0, 0.0, -10.0 ] );
// returns true

bool = isNonPositiveNumberArray.primitives( [ -3.0, new Number(-1.0) ] );
// returns false

isNonPositiveNumberArray.objects( value )

Tests if a value is an array-like object array containing only object nonpositive numbers.

var Number = require( '@stdlib/number-ctor' );

var bool = isNonPositiveNumberArray.objects( [ new Number(-1.0), new Number(-1.0) ] );
// returns true

bool = isNonPositiveNumberArray.objects( [ -1.0, 0.0, -10.0 ] );
// returns false

Examples

var Number = require( '@stdlib/number-ctor' );
var isNonPositiveNumberArray = require( '@stdlib/assert-is-nonpositive-number-array' );

var bool = isNonPositiveNumberArray( [ -5.0, -0.2, -3.9 ] );
// returns true

bool = isNonPositiveNumberArray( [ -1, -2, -3 ] );
// returns true

bool = isNonPositiveNumberArray( [ -1, new Number( -6 ), -3 ] );
// returns true

bool = isNonPositiveNumberArray( [ -1, 'abc', -3 ] );
// returns false

bool = isNonPositiveNumberArray( -78.0 );
// returns false

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

Chat


License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.