(path1: string, path2: string)
| 9 | } |
| 10 | |
| 11 | function arePathsSameImpl(path1: string, path2: string): boolean { |
| 12 | return normCasePath(path1) === normCasePath(path2); |
| 13 | } |
| 14 | |
| 15 | // Export through a mutable object to allow stubbing in ESM tests |
| 16 | export const fileUtilsCommonUtils = { |
nothing calls this directly
no test coverage detected