summaryrefslogtreecommitdiff
path: root/tests/specs/run/dom_readable_stream_from/main.ts
blob: 70025b4e95277b3a8515cfcf3f0f81cbda204ed0 (plain)
1
2
3
4
const asyncIterable = (async function* () {
  yield* [1, 2, 3];
})();
console.log(ReadableStream.from(asyncIterable));