MCPcopy Create free account
hub / github.com/EvoMap/evolver / makeStore

Function makeStore

test/lifecycleRateLimit.test.js:21–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19});
20
21function makeStore() {
22 const state = {};
23 return {
24 getState: (k) => state[k] || null,
25 setState: (k, v) => { state[k] = v; },
26 countPending: () => 0,
27 writeInbound: () => {},
28 writeInboundBatch: () => {},
29 };
30}
31
32function silentLogger() {
33 return { log: () => {}, warn: () => {}, error: () => {} };

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected