(filePath: string)
| 5 | import * as path from '../../../platform/vscode-path/path'; |
| 6 | |
| 7 | export function normCasePath(filePath: string): string { |
| 8 | return getOSType() === OSType.Windows ? path.normalize(filePath).toUpperCase() : path.normalize(filePath); |
| 9 | } |
| 10 | |
| 11 | function arePathsSameImpl(path1: string, path2: string): boolean { |
| 12 | return normCasePath(path1) === normCasePath(path2); |
no test coverage detected