(t, code)
| 36 | red: '\x1b[31m', green: '\x1b[32m', yellow: '\x1b[33m', cyan: '\x1b[36m', |
| 37 | }; |
| 38 | const paint = (t, code) => process.stdout.isTTY ? `${code}${t}${C.reset}` : t; |
| 39 | |
| 40 | // ─── helpers ──────────────────────────────────────────────────────────────── |
| 41 |
no outgoing calls
no test coverage detected