( storage: Storage, storagePrefix = EMPTY_STRING, )
| 57 | ); |
| 58 | |
| 59 | export const hasStoreInStorage = async ( |
| 60 | storage: Storage, |
| 61 | storagePrefix = EMPTY_STRING, |
| 62 | ): Promise<boolean> => !!(await storage.get<1>(storagePrefix + HAS_STORE)); |
| 63 | |
| 64 | export const loadStoreFromStorage = async ( |
| 65 | storage: Storage, |
no outgoing calls
no test coverage detected
searching dependent graphs…