Hacker News new | ask | show | jobs
by eurasiantiger 1738 days ago
True, it is sequential and not parallel. I think this syntax with an async generator could be made to do what you seek.
1 comments

Async iterables are async generators. They call .next() on the iterable, that returns a promise, the promise resolves with either a new item to loop with, or with `done`, which will stop the loop.