()
| 25 | const DESKTOP_LAUNCH_CACHE_BUST_PARAM = "_executor_desktop_launch"; |
| 26 | |
| 27 | const isDesktopBridge = (): boolean => |
| 28 | typeof globalThis.window?.executor?.getServerConnection === "function"; |
| 29 | |
| 30 | const readStoredToken = (): string | null => { |
| 31 | // oxlint-disable-next-line executor/no-try-catch-or-throw -- boundary: localStorage can throw (private mode / disabled storage) |
no outgoing calls
no test coverage detected