(toolName: string, args: unknown, deps: unknown)
| 128 | } |
| 129 | |
| 130 | function 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 |
no test coverage detected