()
| 36 | onIgnoredError?: (error: any) => void, |
| 37 | ): Persister<PersistsType.StoreOrMergeableStore> => { |
| 38 | const getPersisted = async (): Promise< |
| 39 | PersistedContent<PersistsType.StoreOrMergeableStore> |
| 40 | > => jsonParseWithUndefined(storage.getItem(storageName) as string); |
| 41 | |
| 42 | const setPersisted = async ( |
| 43 | getContent: () => PersistedContent<PersistsType.StoreOrMergeableStore>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…