2.0.1 • Published 6 months ago

itchy v2.0.1

Weekly downloads
323
License
MIT
Repository
github
Last release
6 months ago

itchy License NPM version Build Status Coverage Status

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