Files
eh-downloader/server/utils.ts
2023-06-08 22:47:46 +08:00

5 lines
166 B
TypeScript

export function get_ws_host() {
const protocol = document.location.protocol === "https:" ? "wss:" : "ws:";
return `${protocol}//${document.location.host}`;
}