()
| 28 | |
| 29 | /** Notify all subscribers that feature state changed */ |
| 30 | export function emitChange(): void { |
| 31 | cachedRaw = null; |
| 32 | cachedParsed = null; |
| 33 | for (const listener of listeners) listener(); |
| 34 | } |
| 35 | |
| 36 | // useSyncExternalStore requires getSnapshot to return a referentially stable |
| 37 | // value when nothing has changed. Returning `JSON.stringify(getOverrides())` |
no outgoing calls
no test coverage detected