mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
10 lines
314 B
JavaScript
10 lines
314 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 };
|
|
export default { ReadStream, WriteStream, isatty };
|