15 lines
224 B
JavaScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
//callback when all callbacks have been completed.
module.exports = function (cb) {
var count = 0, err = null
return function () {
count ++
return function () {
if(--count) return
cb()
}
}
}