Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bugs.js « lib « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a04701316da283e0fe7d6554f8b92fa4a2e02a6b (plain)
1
2
3
4
5
6
7
8
9

module.exports = bugs

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