npm: upgrade to v1.4.14
[platform/upstream/nodejs.git] / deps / npm / node_modules / npm-registry-client / lib / tag.js
1
2 module.exports = tag
3
4 function tag (project, version, tagName, cb) {
5   this.request("PUT", project+"/"+tagName, JSON.stringify(version), cb)
6 }