* Performs a case-sensitive comparison of two paths. Path roots are always compared case-insensitively.
(a, b)
| 8088 | * Performs a case-sensitive comparison of two paths. Path roots are always compared case-insensitively. |
| 8089 | */ |
| 8090 | function comparePathsCaseSensitive(a, b) { |
| 8091 | return comparePathsWorker(a, b, ts.compareStringsCaseSensitive); |
| 8092 | } |
| 8093 | ts.comparePathsCaseSensitive = comparePathsCaseSensitive; |
| 8094 | /** |
| 8095 | * Performs a case-insensitive comparison of two paths. |
nothing calls this directly
no test coverage detected
searching dependent graphs…