Test if a value is an infinite number.
npm install @stdlib/assert-is-infinite
Alternatively,
- To load the package in a website via a
script
tag without installation and bundlers, use the ES Module available on theesm
branch. - If you are using Deno, visit the
deno
branch. - For use in Observable, or in browser/node environments, use the Universal Module Definition (UMD) build available on the
umd
branch.
The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.
var isInfinite = require( '@stdlib/assert-is-infinite' );
Tests if a value is an infinite number
.
var Number = require( '@stdlib/number-ctor' );
var bool = isInfinite( 1.0/0.0 );
// returns true
bool = isInfinite( new Number( 1.0/0.0 ) );
// returns true
bool = isInfinite( 1.0 );
// returns false
bool = isInfinite( null );
// returns false
Tests if a value
is a primitive number
having an infinite value.
var Number = require( '@stdlib/number-ctor' );
var bool = isInfinite.isPrimitive( -1.0/0.0 );
// returns true
bool = isInfinite.isPrimitive( new Number( -1.0/0.0 ) );
// returns false
Tests if a value
is a Number
object having an infinite value.
var Number = require( '@stdlib/number-ctor' );
var bool = isInfinite.isObject( 1.0/0.0 );
// returns false
bool = isInfinite.isObject( new Number( 1.0/0.0 ) );
// returns true
var Number = require( '@stdlib/number-ctor' );
var isInfinite = require( '@stdlib/assert-is-infinite' );
var bool = isInfinite( 1.0/0.0 );
// returns true
bool = isInfinite( -1.0/0.0 );
// returns true
bool = isInfinite( new Number( 1.0/0.0 ) );
// returns true
bool = isInfinite( -5.0 );
// returns false
bool = isInfinite( 0.0 );
// returns false
bool = isInfinite( 5.256 );
// returns false
bool = isInfinite( '1.0/0.0' );
// returns false
bool = isInfinite( null );
// returns false
@stdlib/assert-is-finite
: test if a value is a finite number.
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-2023. The Stdlib Authors.