summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/helpers/isFinite.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/helpers/isFinite.js')
-rw-r--r--node_modules/es-abstract/helpers/isFinite.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/node_modules/es-abstract/helpers/isFinite.js b/node_modules/es-abstract/helpers/isFinite.js
deleted file mode 100644
index 9e7cd4f..0000000
--- a/node_modules/es-abstract/helpers/isFinite.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-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; };