mirror of https://github.com/nodejs/node.git
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
|
|
||
|
module.exports = bugs
|
||
|
|
||
|
function bugs (name, cb) {
|
||
|
this.get(name + "/latest", 3600, function (er, d) {
|
||
|
if (er) return cb(er)
|
||
|
cb(null, d.bugs)
|
||
|
})
|
||
|
}
|