Skip to content

Instantly share code, notes, and snippets.

@bekzod
Created October 17, 2014 15:21
Show Gist options
  • Select an option

  • Save bekzod/1d868f43c84c2bd8281d to your computer and use it in GitHub Desktop.

Select an option

Save bekzod/1d868f43c84c2bd8281d to your computer and use it in GitHub Desktop.
var async = require('async');
var array = [];
var work = function(item, cb){
setTimeout(10,cb.bind(null,'result'));
};
async.each(array,work,function(err,res){
console.log(err,res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment