Async generators
Widely availableAsync generator functions (async function*
) create iterators that return multiple promises, one after another, on-demand.
Async generator functions (async function*
) create iterators that return multiple promises, one after another, on-demand.