Are there any plans to support async generators (async function*)? For example: async function* run() { yield "a"; await something(); yield "b"; }
Are there any plans to support async generators (async function*)?
For example:
async function* run() {
yield "a";
await something();
yield "b";
}