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

Function makeStore

test/lifecycleReauthHubUnreachable.test.js:19–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected