mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 08:02:06 +00:00
10 lines
157 B
JavaScript
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)
|
|
})
|
|
}
|