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

Function saveNotes

src/lib/storage.ts:49–51  ·  view source on GitHub ↗
(notes: Record<number, string>)

Source from the content-addressed store, hash-verified

47}
48
49export function saveNotes(notes: Record<number, string>): void {
50 saveJson(NOTES_KEY, notes);
51}
52
53export function loadSolvedDates(): Record<number, string> {
54 return loadJson<Record<number, string>>(SOLVED_DATES_KEY, {});

Callers 6

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

Calls 1

saveJsonFunction · 0.85

Tested by

no test coverage detected