(a: string, b: string)
| 43 | * Compares the paths, case-insensitively based on the platform. |
| 44 | */ |
| 45 | export function comparePathsWithoutCasing(a: string, b: string) { |
| 46 | return isCaseSensitive ? a === b : a.toLowerCase() === b.toLowerCase(); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Compares the paths, case-insensitively based on the platform, and |
no outgoing calls
no test coverage detected