(flags: string)
| 369 | } |
| 370 | |
| 371 | function withFlags(flags: string): string { |
| 372 | let f = flags; |
| 373 | if (!f.includes("g")) f += "g"; |
| 374 | if (!f.includes("m")) f += "m"; |
| 375 | return f; |
| 376 | } |
| 377 | |
| 378 | // ── Auto-redaction ──────────────────────────────────────────────────────────── |
| 379 |
no outgoing calls
no test coverage detected