Will child callback wait when parent callback is called in async? If not, does it has any effect on performance?
I came across this scenario while coding recently. I have an async function like this. exports.dummy = function (req, res, next) { async.waterfall([ function (cb) { /.../ cb(); }, function (cb1) { if (/*something*/) { ...
Apr 19, 2016S