(storage: AsyncStorage, key: string)
| 290 | } |
| 291 | |
| 292 | async function removeAsync(storage: AsyncStorage, key: string) { |
| 293 | try { |
| 294 | await storage.removeItem(key) |
| 295 | } catch {} |
| 296 | } |
| 297 | |
| 298 | async function migrateLegacyAsync(input: { |
| 299 | current: AsyncStorage |
no test coverage detected