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 'lib/utils/get.js')
-rw-r--r--lib/utils/get.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/utils/get.js b/lib/utils/get.js
deleted file mode 100644
index 3c5e4f099..000000000
--- a/lib/utils/get.js
+++ /dev/null
@@ -1,6 +0,0 @@
-
-module.exports = get
-function get (obj, key) {
- for (var i in obj) if (i.toLowerCase() === key.toLowerCase()) return obj[i]
- return undefined
-}