You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//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()
|
|
}
|
|
}
|
|
}
|
|
|