MCPcopy Index your code
hub / github.com/nodejs/node / comparePathsCaseInsensitive

Function comparePathsCaseInsensitive

test/fixtures/snapshot/typescript.js:8097–8099  ·  view source on GitHub ↗

* Performs a case-insensitive comparison of two paths.

(a, b)

Source from the content-addressed store, hash-verified

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") {

Callers

nothing calls this directly

Calls 1

comparePathsWorkerFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…