Created
February 2, 2016 17:49
-
-
Save cbradwell/f11b8ac68b86af9fbac3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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){ | |
if(sErr){console.log(sErr);} | |
}); | |
callback(); | |
}, function(err){ | |
if(err){console.log(err);} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment