itchy

Drop-in replacement of async.eachSeries.
Install
npm i itchy --save
API
itchy(array, iterator, done)
const itchy = require('itchy');
const iterator = (n, fn) => {
console.log(n);
fn();
};
itchy([1, 2, 3], iterator, (error) => {
console.log(error || 'done');
});
Environments
For using in browser without browserify, webpack or rollup path node_modules/itchy/dist/itchy.min.js could be used.
License
MIT