es-abstract
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -0,1 +1,5 @@ | ||
1.2.1 / 2015-03-20 | ||
================= | ||
* Fix `isFinite` helper. | ||
1.2.0 / 2015-03-19 | ||
@@ -6,2 +10,6 @@ ================= | ||
1.1.2 / 2015-03-20 | ||
================= | ||
* Fix isFinite helper. | ||
1.1.1 / 2015-03-19 | ||
@@ -8,0 +16,0 @@ ================= |
@@ -0,1 +1,3 @@ | ||
var $isNaN = Number.isNaN || function (a) { return a !== a; }; | ||
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; }; |
{ | ||
"name": "es-abstract", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"author": "Jordan Harband", | ||
@@ -5,0 +5,0 @@ "description": "ECMAScript spec abstract operations.", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71096
1190