1import { createReadStream } from 'node:fs' 2 3async function logChunks(readable) { 4 for await (const chunk of readable) { 5 console.log(chunk) 6 } 7} 8 9const readable = craeateReadStream('./big.file', { encoding: 'utf8' }) 10 11logChunks(readable)