clearFieldDetectionCache function infrastructure exported ✓ 100.0%
Last updated: 2026-02-24T21:07:57.500Z
Metrics
LOC: 7
Complexity: 1
Params: 0
Coverage: 100.0% (2/2 lines, 1x executed)
Signature
clearFieldDetectionCache(): : Promise<void>
Summary
Clears all field detection cache entries.
Source Code
export async function clearFieldDetectionCache(): Promise<void> {
await updateStorageAtomically(
STORAGE_KEYS.FIELD_CACHE,
[] as FieldDetectionCacheEntry[],
() => [],
);
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| updateStorageAtomically | calls |
Impact (Incoming)
| Source | Type |
|---|---|
| handle | uses |