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/sign.js')
-rw-r--r--node_modules/es-abstract/helpers/sign.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/node_modules/es-abstract/helpers/sign.js b/node_modules/es-abstract/helpers/sign.js
index 2ac0bf1b1..598ea7d8b 100644
--- a/node_modules/es-abstract/helpers/sign.js
+++ b/node_modules/es-abstract/helpers/sign.js
@@ -1,3 +1,5 @@
+'use strict';
+
module.exports = function sign(number) {
return number >= 0 ? 1 : -1;
};