(output: string)
| 270 | } |
| 271 | |
| 272 | export function normalizeTerminalText(output: string): string { |
| 273 | return stripTerminalOutput(output).replace(/\s+/g, ' ').trim() |
| 274 | } |
| 275 | |
| 276 | export function parseCounter( |
| 277 | output: string, |
no test coverage detected