4.2.1 • Published 6 years ago
is-finite-x v4.2.1
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
4.2.1
6 years ago
4.2.0
6 years ago
4.1.0
6 years ago
4.0.26
6 years ago
4.0.25
6 years ago
4.0.24
6 years ago
4.0.23
6 years ago
4.0.22
6 years ago
4.0.21
6 years ago
4.0.20
6 years ago
4.0.19
6 years ago
4.0.18
6 years ago
4.0.17
6 years ago
4.0.16
6 years ago
4.0.15
6 years ago
4.0.14
6 years ago
4.0.13
6 years ago
4.0.12
6 years ago
4.0.11
6 years ago
4.0.10
6 years ago
4.0.9
6 years ago
4.0.8
6 years ago
4.0.7
6 years ago
4.0.6
6 years ago
4.0.5
6 years ago
4.0.4
6 years ago
4.0.3
6 years ago
4.0.2
6 years ago
4.0.1
6 years ago
4.0.0
6 years ago
3.0.4
7 years ago
3.0.3
7 years ago
3.0.2
8 years ago
3.0.1
8 years ago
3.0.0
8 years ago
2.0.0
8 years ago
1.3.0
8 years ago
1.2.0
8 years ago
1.1.0
8 years ago
1.0.0
8 years ago