* Output a single JSON line (NDJSON format).
(data: unknown)
| 832 | * Output a single JSON line (NDJSON format). |
| 833 | */ |
| 834 | private outputLine(data: unknown): void { |
| 835 | this.writeToStdout(JSON.stringify(data) + "\n") |
| 836 | } |
| 837 | |
| 838 | /** |
| 839 | * Output the final accumulated result (for "json" mode). |
no test coverage detected