Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/seanprashad/leetcode-patterns
/ loadStarred
Function
loadStarred
src/lib/storage.ts:37–39 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
35
}
36
37
export
function
loadStarred(): Set<number> {
38
return
new
Set(loadJson<number[]>(STARRED_KEY, []));
39
}
40
41
export
function
saveStarred(ids: Set<number>): void {
42
saveJson(STARRED_KEY, [...ids]);
Callers
6
QuestionsTable
Function · 0.90
RoadmapView
Function · 0.90
sync.test.ts
File · 0.90
storage.test.ts
File · 0.90
uploadProgress
Function · 0.90
mergeFromRealtimePayload
Function · 0.90
Calls
1
loadJson
Function · 0.85
Tested by
no test coverage detected