node/deps/npm/node_modules/npm-registry-client/lib/bugs.js
2014-07-31 09:05:30 -07:00

10 lines
157 B
JavaScript

module.exports = bugs
function bugs (uri, cb) {
this.get(uri + "/latest", 3600, function (er, d) {
if (er) return cb(er)
cb(null, d.bugs)
})
}