Files
bun.sh/test/regression/issue/09041/09041-fixture.mjs
2024-09-03 21:32:52 -07:00

5 lines
209 B
JavaScript
Generated

// This file is intended to be able to run in Node and Bun
import { PassThrough, Readable, pipeline } from "node:stream";
pipeline(Readable.toWeb(process.stdin), new PassThrough(), process.stdout, () => {});