(result: unknown)
| 111 | * still throws on circular / BigInt-bearing results, same as before. |
| 112 | */ |
| 113 | export function resultToString(result: unknown): string { |
| 114 | return typeof result === 'object' |
| 115 | ? JSON.stringify(result, null, 2) |
| 116 | : String(result ?? ''); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Write an evaluate result string to disk for `--out`, returning bytes written. |
no outgoing calls
no test coverage detected