您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 283B

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;