this repo has no description
at main 12 lines 211 B view raw
1import { Readable } from 'node:stream' 2 3async function* generate() { 4 yield 'hello' 5 yield 'streams' 6} 7 8const readable = Readable.from(generate()) 9 10readable.on('data', chunk => { 11 console.log(chunk) 12})