MCPcopy Index your code
hub / github.com/DeepNotesApp/DeepNotes / get

Method get

apps/client/src/code/pages/page-cache.ts:23–25  ·  view source on GitHub ↗
(pageId: string)

Source from the content-addressed store, hash-verified

21 }
22
23 get(pageId: string): Page | null {
24 return this.react.cache.find((page) => page.id === pageId) ?? null;
25 }
26 has(pageId: string): boolean {
27 return this.get(pageId) != null;
28 }

Callers 1

hasMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected