Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80529 views
1
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;
12
13