embark/lib/utils/debug_util.js

21 lines
477 B
JavaScript
Raw Normal View History

// util to map async method names
function extend(filename, async) {
if (async._waterfall !== undefined) {
return;
}
async._waterfall = async.waterfall;
async.waterfall = function(_tasks, callback) {
2017-03-29 17:50:05 +00:00
let tasks = _tasks.map(function(t) {
let fn = function() {
console.log("async " + filename + ": " + t.name);
t.apply(t, arguments);
};
return fn;
});
async._waterfall(tasks, callback);
};
}
module.exports = extend;