Skip to content

Instantly share code, notes, and snippets.

@iokasimov
Created June 20, 2016 11:12
Show Gist options
  • Save iokasimov/99a3c087e190f6b3694b3d961ce5a462 to your computer and use it in GitHub Desktop.
Save iokasimov/99a3c087e190f6b3694b3d961ce5a462 to your computer and use it in GitHub Desktop.
var main = function(continets){
var counter = 0;
var agencies = [];
var on_complete = function(err, data){
agencies = agencies.concat(data);
counter++;
}
async.each(continents,
function (url, next) {
p.process(url, on_complete);
},
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