npm: Upgrade to 1.3.19
[platform/upstream/nodejs.git] / deps / npm / node_modules / npm-registry-client / lib / bugs.js
1
2 module.exports = bugs
3
4 function bugs (name, cb) {
5   this.get(name + "/latest", 3600, function (er, d) {
6     if (er) return cb(er)
7     cb(null, d.bugs)
8   })
9 }