()
| 18 | let token: string | null = null; |
| 19 | |
| 20 | export const isTauri = () => |
| 21 | typeof window !== "undefined" && "__TAURI_INTERNALS__" in (window as Window & object); |
| 22 | |
| 23 | export function initServeToken() { |
| 24 | if (typeof window === "undefined") return; |
no outgoing calls
no test coverage detected