13 lines
162 B
JavaScript
13 lines
162 B
JavaScript
export class ReadStream {
|
|
fd;
|
|
isRaw = false;
|
|
isTTY = false;
|
|
constructor(fd) {
|
|
this.fd = fd;
|
|
}
|
|
setRawMode(mode) {
|
|
this.isRaw = mode;
|
|
return this;
|
|
}
|
|
}
|