* Performs a case-insensitive comparison of two paths.
(a, b)
| 8095 | * Performs a case-insensitive comparison of two paths. |
| 8096 | */ |
| 8097 | function comparePathsCaseInsensitive(a, b) { |
| 8098 | return comparePathsWorker(a, b, ts.compareStringsCaseInsensitive); |
| 8099 | } |
| 8100 | ts.comparePathsCaseInsensitive = comparePathsCaseInsensitive; |
| 8101 | function comparePaths(a, b, currentDirectory, ignoreCase) { |
| 8102 | if (typeof currentDirectory === "string") { |
nothing calls this directly
no test coverage detected
searching dependent graphs…