Notify other tabs/windows.
(message: Record<string, unknown>)
| 96 | }, |
| 97 | /** Notify other tabs/windows. */ |
| 98 | post(message: Record<string, unknown>) { |
| 99 | if (typeof window === "undefined") return |
| 100 | localStorage.setItem( |
| 101 | name, |
| 102 | JSON.stringify({ ...message, timestamp: now() }) |
| 103 | ) |
| 104 | }, |
| 105 | } |
| 106 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…