NightSkyJeffN
Reactiflux3y ago
3 replies
NightSkyJeff

nightskyjeff – 01-27 Jan 10

    const feed = Readable.from([ 'abc', 'def', 'ghi', 'jkl' ]).pipe(process.stdout);
    console.log("waiting for feed to finish");
    await finished(feed);
    console.log("feed finished");

^ this simple Readable.from().pipe() never finishes. what am I missing? I feel like it's obvious and I'm blind.
Was this page helpful?