(key, value)
| 10332 | } |
| 10333 | } |
| 10334 | function safeLocalStorageSet(key, value) { |
| 10335 | try { |
| 10336 | window.localStorage.setItem(key, value); |
| 10337 | return true; |
| 10338 | } catch (e) { |
| 10339 | return false; |
| 10340 | } |
| 10341 | } |
| 10342 | function readStoredState() { |
| 10343 | const storageKey = getStorageKey(); |
| 10344 | const raw = safeLocalStorageGet(storageKey); |