(ns: string, key: string)
| 134 | export 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) => |
no outgoing calls
no test coverage detected