MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / getItem

Function getItem

app/services/tdc_vm_runner.cjs:15–17  ·  view source on GitHub ↗
(key)

Source from the content-addressed store, hash-verified

13 const store = new Map();
14 return {
15 getItem(key) {
16 return store.has(String(key)) ? store.get(String(key)) : null;
17 },
18 setItem(key, value) {
19 store.set(String(key), String(value));
20 },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected