MCPcopy
hub / github.com/seanprashad/leetcode-patterns / loadNotes

Function loadNotes

src/lib/storage.ts:45–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43}
44
45export function loadNotes(): Record<number, string> {
46 return loadJson<Record<number, string>>(NOTES_KEY, {});
47}
48
49export function saveNotes(notes: Record<number, string>): void {
50 saveJson(NOTES_KEY, notes);

Callers 6

QuestionsTableFunction · 0.90
RoadmapViewFunction · 0.90
sync.test.tsFile · 0.90
storage.test.tsFile · 0.90
uploadProgressFunction · 0.90
mergeFromRealtimePayloadFunction · 0.90

Calls 1

loadJsonFunction · 0.85

Tested by

no test coverage detected