(capacityBytes = 100 * 1024)
| 10 | readonly capacity: number; |
| 11 | |
| 12 | constructor(capacityBytes = 100 * 1024) { |
| 13 | this.capacity = capacityBytes; |
| 14 | this.buf = Buffer.allocUnsafe(capacityBytes); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Append PTY output to the buffer. |
nothing calls this directly
no outgoing calls
no test coverage detected