Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/helpers/isNaN.js')
-rw-r--r--node_modules/es-abstract/helpers/isNaN.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/node_modules/es-abstract/helpers/isNaN.js b/node_modules/es-abstract/helpers/isNaN.js
index e4d4f95f3..cb8631dca 100644
--- a/node_modules/es-abstract/helpers/isNaN.js
+++ b/node_modules/es-abstract/helpers/isNaN.js
@@ -1,3 +1,5 @@
+'use strict';
+
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};