(key: string, value: unknown)
| 87 | } |
| 88 | |
| 89 | export function safeSetJson(key: string, value: unknown): void { |
| 90 | try { |
| 91 | globalThis.localStorage.setItem(key, JSON.stringify(value)); |
| 92 | } catch { |
| 93 | // ignore |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Per-session unread flags: a session id is "unread" when its value is `true`. |
no test coverage detected