MCPcopy
hub / github.com/microsoft/data-formulator / exists

Function exists

src/app/workspaceDB.ts:165–168  ·  view source on GitHub ↗

Check if a workspace exists.

(id: string)

Source from the content-addressed store, hash-verified

163
164 /** Check if a workspace exists. */
165 async exists(id: string): Promise<boolean> {
166 const entry = await this.load(id);
167 return entry !== undefined;
168 },
169};
170
171// ── Table data (full rows) ──────────────────────────────────────────────

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected