MCPcopy Index your code
hub / github.com/angular/angular / fileExists

Function fileExists

packages/compiler-cli/src/ngtsc/resource/src/loader.ts:276–282  ·  view source on GitHub ↗
(fileName: string)

Source from the content-addressed store, hash-verified

274 }
275 },
276 fileExists(fileName: string): boolean {
277 if (fileName.includes(RESOURCE_MARKER)) {
278 return false;
279 } else {
280 return adapter.fileExists(fileName);
281 }
282 },
283 readFile: adapter.readFile.bind(adapter),
284 getCurrentDirectory: adapter.getCurrentDirectory.bind(adapter),
285 getDirectories: adapter.getDirectories?.bind(adapter),

Callers

nothing calls this directly

Calls 1

fileExistsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…