(a: string, b: string)
| 51 | * normalizing back- and forward-slashes. |
| 52 | */ |
| 53 | export function comparePathsWithoutCasingOrSlashes(a: string, b: string) { |
| 54 | return comparePathsWithoutCasing(forceForwardSlashes(a), forceForwardSlashes(b)); |
| 55 | } |
| 56 | |
| 57 | export function caseNormalizedMap<V>(): Map<string, V> { |
| 58 | return getCaseSensitivePaths() ? new Map() : new MapUsingProjection(lowerCaseInsensitivePath); |
nothing calls this directly
no test coverage detected