async-array-each
v1.2.0
Published
Async Array.prototype.forEach()
Downloads
1
Readme
Async Array.prototype.forEach()
var asyncEach = require('async-array-each');
asyncEach([1, 2, 3], function(item, next) {
setTimeout(function () {
console.log(item);
next();
}, 1000);
}, function() {
console.log('Finnish!');
});