(value: string)
| 8 | } |
| 9 | |
| 10 | function isNonEmptyText(value: string): boolean { |
| 11 | return value.trim().length > 0; |
| 12 | } |
| 13 | |
| 14 | function normalizeDiagnosticMessage(message: string): string { |
| 15 | return message.replace(/^\s*(?:error|warning):\s*/iu, ''); |
no outgoing calls
no test coverage detected