Remove isFinite and isNaN.

This commit is contained in:
John-David Dalton
2017-01-10 14:44:07 -08:00
parent 4ecd69e4fa
commit fc1a360212
3 changed files with 1 additions and 71 deletions

View File

@@ -5,7 +5,7 @@ import isObjectLike from './isObjectLike.js';
* Checks if `value` is classified as a `Number` primitive or object.
*
* **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are
* classified as numbers, use the `isFinite` method.
* classified as numbers, use the `Number.isFinite` method.
*
* @since 0.1.0
* @category Lang