Codebase list node-tty-browserify / fresh-snapshots/main index.js
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

index.js @fresh-snapshots/mainraw · history · blame

exports.isatty = function () { return false; };

function ReadStream() {
  throw new Error('tty.ReadStream is not implemented');
}
exports.ReadStream = ReadStream;

function WriteStream() {
  throw new Error('tty.WriteStream is not implemented');
}
exports.WriteStream = WriteStream;