JSPM

itchy

2.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1270
  • Score
    100M100P100Q109953F
  • License MIT

Drop-in replacement of async.eachSeries

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 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