Sync getter for ExecResult.stderr
()
| 327 | |
| 328 | /** Sync getter for ExecResult.stderr */ |
| 329 | getStderr(): string { |
| 330 | if (this.#disk) { |
| 331 | return '' |
| 332 | } |
| 333 | return this.#stderrBuffer |
| 334 | } |
| 335 | |
| 336 | get isOverflowed(): boolean { |
| 337 | return this.#disk !== null |
no outgoing calls
no test coverage detected