mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
let isatty = () => false;
|
|
function WriteStream() {
|
|
throw new Error("tty.WriteStream is not implemented for browsers");
|
|
}
|
|
function ReadStream() {
|
|
throw new Error("tty.ReadStream is not implemented for browsers");
|
|
}
|
|
export { ReadStream, WriteStream, isatty };
|