mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
5 lines
166 B
TypeScript
5 lines
166 B
TypeScript
export function get_ws_host() {
|
|
const protocol = document.location.protocol === "https:" ? "wss:" : "ws:";
|
|
return `${protocol}//${document.location.host}`;
|
|
}
|