()
| 72 | }; |
| 73 | |
| 74 | export const getLocalBootData = (): BootCacheData | null => { |
| 75 | const local = storage.getItem(BOOT_LOCAL_KEY); |
| 76 | if (local) { |
| 77 | return JSON.parse(local) as BootCacheData; |
| 78 | } |
| 79 | |
| 80 | return null; |
| 81 | }; |
| 82 | |
| 83 | const updateLocalBootData = ( |
| 84 | current: Partial<BootCacheData> | undefined, |
no outgoing calls
no test coverage detected