(message: string)
| 12 | } |
| 13 | |
| 14 | function normalizeDiagnosticMessage(message: string): string { |
| 15 | return message.replace(/^\s*(?:error|warning):\s*/iu, ''); |
| 16 | } |
| 17 | |
| 18 | function normalizeDiagnosticEntries(inputs: readonly DiagnosticInput[] = []): DiagnosticEntry[] { |
| 19 | return inputs.flatMap((input) => { |
no outgoing calls
no test coverage detected