MCPcopy Index your code
hub / github.com/codeaashu/claude-code / clearStoredImagePaths

Function clearStoredImagePaths

src/utils/imageStore.ts:111–113  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

109 * Clear the in-memory cache of stored image paths.
110 */
111export function clearStoredImagePaths(): void {
112 storedImagePaths.clear()
113}
114
115function evictOldestIfAtCap(): void {
116 while (storedImagePaths.size >= MAX_STORED_IMAGE_PATHS) {

Callers 1

clearSessionCachesFunction · 0.85

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected