()
| 21 | } |
| 22 | |
| 23 | export function createCachedMCState(): CachedMCState { |
| 24 | return { |
| 25 | pinnedEdits: [], |
| 26 | registeredTools: new Set(), |
| 27 | toolOrder: [], |
| 28 | deletedRefs: new Set(), |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | export function isCachedMicrocompactEnabled(): boolean { |
| 33 | return getCachedMCConfig().enabled |
nothing calls this directly
no outgoing calls
no test coverage detected