mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
5 lines
119 B
TypeScript
5 lines
119 B
TypeScript
|
const asyncIterable = (async function* () {
|
||
|
yield* [1, 2, 3];
|
||
|
})();
|
||
|
console.log(ReadableStream.from(asyncIterable));
|