javascript-sync-async-foreach
javascript-sync-async-foreach copied to clipboard
An optionally-asynchronous forEach with an interesting interface.
Can "license": "MIT" please be added to the package.json file?
Package seems to be used widely but can't see a lot of commits in the past :pencil2:. Would be happy to jump in, if you wish. :smirk: Cheers, Stefan
Please publish this update and then republish to npm. It will help our automated security scanning. Thanks!
I wanted to asynchronously loop through 10000 items. It broke. I kept on decreasing the items until I reached 2050. It runs successfully when items are 2050. It showed me...
I am trying to use this in an API call: ``` forEach(["a", "b", "c"], function(item, index, arr) { var done = this.async(); console.log("each", item, index, arr); setTimeout(function() { done(); },...
Would be useful having this lib hosted on a CDN like [cdnjs.com](https://cdnjs.com)
Explain what this library does in the `README.md`. Looking at the examples, it shows the same output for every demo so I am trying to figure out just what this...