summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/lib/tag.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/lib/tag.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/lib/tag.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/lib/tag.js b/deps/npm/node_modules/npm-registry-client/lib/tag.js
deleted file mode 100644
index 3b6dad1df2..0000000000
--- a/deps/npm/node_modules/npm-registry-client/lib/tag.js
+++ /dev/null
@@ -1,23 +0,0 @@
-module.exports = tag
-
-var assert = require('assert')
-
-function tag (uri, params, cb) {
- assert(typeof uri === 'string', 'must pass registry URI to tag')
- assert(params && typeof params === 'object', 'must pass params to tag')
- assert(typeof cb === 'function', 'must pass callback to tag')
-
- assert(typeof params.version === 'string', 'must pass version to tag')
- assert(typeof params.tag === 'string', 'must pass tag name to tag')
- assert(
- params.auth && typeof params.auth === 'object',
- 'must pass auth to tag'
- )
-
- var options = {
- method: 'PUT',
- body: JSON.stringify(params.version),
- auth: params.auth
- }
- this.request(uri + '/' + params.tag, options, cb)
-}