* Write a chunk of bytes to stdout verbatim. Awaits any * Promise the rawStdout writer returns so a slow downstream * consumer pauses the upstream reader instead of buffering chunks * in memory. See `OutputStreams.rawStdout` for the backpressure * contract.
(text: string)
| 81 | * contract. |
| 82 | */ |
| 83 | async writeChunk(text: string): Promise<void> { |
| 84 | await this.rawStdoutWrite(text); |
| 85 | } |
| 86 | |
| 87 | error(message: string): void { |
| 88 | if (this.mode === 'json') { |
no outgoing calls
no test coverage detected