(value: string)
| 15 | const modes: Mode[] = []; |
| 16 | |
| 17 | function normalizeModeKey(value: string): string { |
| 18 | return String(value ?? "") |
| 19 | .trim() |
| 20 | .toLowerCase(); |
| 21 | } |
| 22 | |
| 23 | function normalizeAliases(aliases: string[] = [], name: string): string[] { |
| 24 | const normalized = new Set<string>(); |
no test coverage detected