MCPcopy Index your code
hub / github.com/thesysdev/openui / buildCacheKey

Function buildCacheKey

packages/lang-core/src/runtime/queryManager.ts:130–133  ·  view source on GitHub ↗
(toolName: string, args: unknown, deps: unknown)

Source from the content-addressed store, hash-verified

128}
129
130function buildCacheKey(toolName: string, args: unknown, deps: unknown): string {
131 const depsKey = deps != null ? "::" + stableStringify(deps) : "";
132 return toolName + "::" + stableStringify(args) + depsKey;
133}
134
135// ── Factory ──────────────────────────────────────────────────────────────────
136

Callers 1

evaluateQueriesFunction · 0.85

Calls 1

stableStringifyFunction · 0.85

Tested by

no test coverage detected