(title: string)
| 29 | // ── Helpers ─────────────────────────────────────────────────────────────── |
| 30 | |
| 31 | function section(title: string) { |
| 32 | console.log(`\n${"─".repeat(60)}`); |
| 33 | console.log(` ${title}`); |
| 34 | console.log(`${"─".repeat(60)}`); |
| 35 | } |
| 36 | |
| 37 | function jsonPretty(obj: unknown): string { |
| 38 | return JSON.stringify(obj, null, 2); |