summaryrefslogtreecommitdiff
path: root/deps/npm/lib/install/is-registry-specifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/install/is-registry-specifier.js')
-rw-r--r--deps/npm/lib/install/is-registry-specifier.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/npm/lib/install/is-registry-specifier.js b/deps/npm/lib/install/is-registry-specifier.js
deleted file mode 100644
index 606be2bd13..0000000000
--- a/deps/npm/lib/install/is-registry-specifier.js
+++ /dev/null
@@ -1,6 +0,0 @@
-'use strict'
-module.exports = isRegistrySpecifier
-
-function isRegistrySpecifier (spec) {
- return spec.type === 'range' || spec.type === 'version' || spec.type === 'tag'
-}