(input: string, isBareFilename: boolean)
| 163 | } |
| 164 | |
| 165 | function getLookupKey(input: string, isBareFilename: boolean): string { |
| 166 | return isBareFilename ? getLowercaseBasename(input) : input.toLowerCase(); |
| 167 | } |
| 168 | |
| 169 | function resolveAbsolutePath( |
| 170 | input: string, |
no test coverage detected