Projekt

Obecné

Profil

Stáhnout (283 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
exports.isatty = function () { return false; };
2
3
function ReadStream() {
4
  throw new Error('tty.ReadStream is not implemented');
5
}
6
exports.ReadStream = ReadStream;
7
8
function WriteStream() {
9
  throw new Error('tty.ReadStream is not implemented');
10
}
11
exports.WriteStream = WriteStream;