MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / k

Function k

packages/core/sdk/src/blob.ts:136–136  ·  view source on GitHub ↗
(ns: string, key: string)

Source from the content-addressed store, hash-verified

134export const makeInMemoryBlobStore = (): BlobStore => {
135 const store = new Map<string, string>();
136 const k = (ns: string, key: string) => `${ns}::${key}`;
137 return {
138 get: (ns, key) => Effect.sync(() => store.get(k(ns, key)) ?? null),
139 getMany: (namespaces, key) =>

Callers 1

makeInMemoryBlobStoreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected