File size: 439 Bytes
dbda22c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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
}