itchy

2.0.1 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    12
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.1
    12
  • 2.0.0
    0
  • 1.0.0
    1,433

Package Sidebar

Install

npm i itchy

Weekly Downloads

1,445

Version

2.0.1

License

MIT

Unpacked Size

5.4 kB

Total Files

5

Last publish

Collaborators

  • coderaiser