MCPcopy
hub / github.com/nukeop/nuclear / entries

Method entries

packages/player/src/test/utils/inMemoryTauriStore.ts:13–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11 }
12
13 async entries() {
14 let map = stores.get(this.#path);
15 if (!map) {
16 map = new Map<string, unknown>();
17 stores.set(this.#path, map);
18 }
19 return Array.from(map.entries());
20 }
21
22 async get<T>(key: string): Promise<T | null> {
23 const map = stores.get(this.#path);

Callers 7

toDeclsFunction · 0.80
settingsStore.tsFile · 0.80
providersStore.tsFile · 0.80
useSettingsGroupsFunction · 0.80
findConflictFunction · 0.80
getObjectPreviewFunction · 0.80
listRegistryEntriesFunction · 0.80

Calls 2

getMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected