mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 04:49:06 +00:00
5 lines
209 B
JavaScript
Generated
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, () => {});
|