mirror of
https://github.com/JonasunderscoreJones/api.jonasjones.dev.git
synced 2025-10-23 12:09:19 +02:00
20 lines
439 B
JavaScript
20 lines
439 B
JavaScript
// MIT lisence
|
|
// from https://github.com/substack/tty-browserify/blob/1ba769a6429d242f36226538835b4034bf6b7886/index.js
|
|
|
|
export function isatty() {
|
|
return false;
|
|
}
|
|
|
|
export function ReadStream() {
|
|
throw new Error('tty.ReadStream is not implemented');
|
|
}
|
|
|
|
export function WriteStream() {
|
|
throw new Error('tty.ReadStream is not implemented');
|
|
}
|
|
|
|
export default {
|
|
isatty: isatty,
|
|
ReadStream: ReadStream,
|
|
WriteStream: WriteStream
|
|
}
|