MCPcopy Index your code
hub / github.com/tinyplex/tinybase / getDocShotMap

Function getDocShotMap

test/e2e/doc-shots.ts:599–608  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

597];
598
599export const getDocShotMap = (): Map<string, DocShot> => {
600 const shots = new Map<string, DocShot>();
601 DOC_SHOTS.forEach((shot) => {
602 if (shots.has(shot.asset)) {
603 throw new Error(`Duplicate doc shot asset: ${shot.asset}`);
604 }
605 shots.set(shot.asset, shot);
606 });
607 return shots;
608};

Callers 1

doc-shots.test.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…