MCPcopy
hub / github.com/wiedehopf/tar1090 / get

Function get

html/early.js:183–186  ·  view source on GitHub ↗
(loStore, key)

Source from the content-addressed store, hash-verified

181
182const lopaStore = new Proxy(loStore, {
183 get(loStore, key) {
184 key = String(window.location.origin) + String(window.location.pathname) + key;
185 return loStore[key];
186 },
187 set(loStore, key, value) {
188 key = String(window.location.origin) + String(window.location.pathname) + key;
189 return loStore[key] = value;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected