JSPM

  • Created
  • Published
  • Downloads 8492
  • Score
    100M100P100Q132943F
  • License MIT

ES6-compliant shim for Number.isFinite.

Package Exports

  • is-finite-x

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 (is-finite-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

is-finite-x

ES6-compliant shim for Number.isFinite.

See: 20.1.2.2 Number.isFinite ( number )

module.exports(number)boolean

This method determines whether the passed value is a finite number.

Kind: Exported function
Returns: boolean - A Boolean indicating whether or not the given value is a finite number.

Param Type Description
number * The value to be tested for finiteness.

Example

import numIsFinite from 'is-finite-x';

console.log(numIsFinite(Infinity)); // false
console.log(numIsFinite(NaN)); // false
console.log(numIsFinite(-Infinity)); // false

console.log(numIsFinite(0)); // true
console.log(numIsFinite(2e64)); // true

console.log(numIsFinite('0')); // false, would've been true with
// global isFinite('0')
console.log(numIsFinite(null)); // false, would've been true with