MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / loadShowWorkspacePaths

Function loadShowWorkspacePaths

apps/kimi-web/src/lib/storage.ts:157–159  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

155 * state with no server-side source of truth.
156 */
157export function loadShowWorkspacePaths(): boolean {
158 return safeGetJson<boolean>(STORAGE_KEYS.showWorkspacePaths) === true;
159}
160
161export function saveShowWorkspacePaths(show: boolean): void {
162 safeSetJson(STORAGE_KEYS.showWorkspacePaths, show);

Callers

nothing calls this directly

Calls 1

safeGetJsonFunction · 0.85

Tested by

no test coverage detected