4.2.1 • Published 5 years ago

is-finite-x v4.2.1

Weekly downloads
12,806
License
MIT
Repository
github
Last release
5 years ago

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.

ParamTypeDescription
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
4.2.1

5 years ago

4.2.0

5 years ago

4.1.0

5 years ago

4.0.26

5 years ago

4.0.25

5 years ago

4.0.24

5 years ago

4.0.23

5 years ago

4.0.22

5 years ago

4.0.21

5 years ago

4.0.20

5 years ago

4.0.19

5 years ago

4.0.18

5 years ago

4.0.17

5 years ago

4.0.16

5 years ago

4.0.15

5 years ago

4.0.14

5 years ago

4.0.13

5 years ago

4.0.12

5 years ago

4.0.11

5 years ago

4.0.10

5 years ago

4.0.9

5 years ago

4.0.8

5 years ago

4.0.7

5 years ago

4.0.6

5 years ago

4.0.5

5 years ago

4.0.4

5 years ago

4.0.3

5 years ago

4.0.2

5 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.0.4

6 years ago

3.0.3

6 years ago

3.0.2

7 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.0.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago