MCPcopy
hub / github.com/witheve/Eve / load

Method load

src/runtime/id.ts:41–48  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

39 }
40
41 load(id: string) {
42 let found = this.partsToId[id];
43 if(found) return found;
44 let neue = this._makeStringId();
45 this.partsToId[id] = neue;
46 this.idToParts[neue] = id;
47 return neue;
48 }
49
50 get(parts: any[]) {
51 let key = `⦑${parts.join("⦒")}`;

Callers 8

TFunction · 0.45
mFunction · 0.45
initFunction · 0.45
initFunction · 0.45
handleEventFunction · 0.45
createExpressAppFunction · 0.45
IDEMessageHandlerFunction · 0.45
MessageHandlerFunction · 0.45

Calls 1

_makeStringIdMethod · 0.95

Tested by

no test coverage detected