(value: string)
| 56 | >(); |
| 57 | |
| 58 | function normalizeLanguageName(value: string): string { |
| 59 | return String(value ?? "") |
| 60 | .trim() |
| 61 | .toLowerCase(); |
| 62 | } |
| 63 | |
| 64 | function matchingModeName(a: string, b: string): boolean { |
| 65 | const normalizedA = normalizeLanguageName(a); |
no test coverage detected