Skip to content

Instantly share code, notes, and snippets.

var async = require('async');
async.eachSeries(array, function(item, callback){
callAsyncFunction(item);
async.eachSeries(arrayTwo, function(sItem, sCallback){
count++;
callAnotherAsyncFunction(item + sItem)
sCallback();
}
}, function(sErr){