(input: string)
| 158 | } |
| 159 | |
| 160 | function getLowercaseBasename(input: string): string { |
| 161 | const normalizedInput = normalizeSeparators(input); |
| 162 | return normalizedInput.split("/").pop()!.toLowerCase(); |
| 163 | } |
| 164 | |
| 165 | function getLookupKey(input: string, isBareFilename: boolean): string { |
| 166 | return isBareFilename ? getLowercaseBasename(input) : input.toLowerCase(); |
no test coverage detected