MCPcopy Create free account
hub / github.com/ColmapView/Colmapview.github.io / fileExists

Function fileExists

src/components/componentStoreBoundary.test.ts:58–65  ·  view source on GitHub ↗
(filePath: string)

Source from the content-addressed store, hash-verified

56}
57
58async function fileExists(filePath: string): Promise<boolean> {
59 try {
60 await access(filePath);
61 return true;
62 } catch {
63 return false;
64 }
65}
66
67describe('component store boundaries', () => {
68 it('keeps production component store hooks behind facade modules', async () => {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected