You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. exports.isatty = function () { return false; };
  2. function ReadStream() {
  3. throw new Error('tty.ReadStream is not implemented');
  4. }
  5. exports.ReadStream = ReadStream;
  6. function WriteStream() {
  7. throw new Error('tty.ReadStream is not implemented');
  8. }
  9. exports.WriteStream = WriteStream;