Package Exports
- itchy
- itchy/lib/itchy.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (itchy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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