(data: unknown)
| 149 | * Output data as JSON (for machine-readable output). |
| 150 | */ |
| 151 | export function outputJson(data: unknown): void { |
| 152 | console.log(JSON.stringify(data, null, 2)) |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Output data as TOON (Token-Oriented Object Notation). |
no outgoing calls
no test coverage detected