Clears the title normalization cache.
export function clearTitleNormalizationCache(): void { try { storage.removeItem(STORAGE_KEYS.TITLE_NORMALIZATION_CACHE); console.info("[Storage] 🧹 Cleared title normalization cache"); } catch (error) { console.error( "[Storage] ❌ Error clearing title normalization cache", error, ); }} Copy
export function clearTitleNormalizationCache(): void { try { storage.removeItem(STORAGE_KEYS.TITLE_NORMALIZATION_CACHE); console.info("[Storage] 🧹 Cleared title normalization cache"); } catch (error) { console.error( "[Storage] ❌ Error clearing title normalization cache", error, ); }}
Clears the title normalization cache.