Jul 20, 2017 · 1 min read
Would be nice to have an explicit parallel method set, similar to serial, that limit the number of things in-flight at once.
parallelMap(5, url => fetch(url).then(r => r.json()))
As an example… same for parallelEach, in this way, 5 is the number of concurrent things at a time.
