1.0.1 • Published 2 years ago

number.isfinite v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Number.isFinite Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ESnext spec-compliant Number.isFinite shim/polyfill/replacement that works as far down as ES3.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Getting started

npm install --save number.isfinite

Usage/Examples

var x = 0.007;

console.log(Number.isFinite(3)); // true
console.log(Number.isFinite(Infinity)); // false
console.log(Number.isFinite("7")); // false

Tests

Clone the repo, npm install, and run npm test