(text: string, color: AnsiColors | undefined)
| 507 | } |
| 508 | |
| 509 | #colorize(text: string, color: AnsiColors | undefined): string { |
| 510 | if (!color) { |
| 511 | return text; |
| 512 | } |
| 513 | return ansis[color](text); |
| 514 | } |
| 515 | |
| 516 | #formatDurationSuffix({ |
| 517 | start, |
no outgoing calls
no test coverage detected