You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
382 B
8 lines
382 B
export function getNativeWebSocket() {
|
|
if (typeof WebSocket !== "undefined") return WebSocket;
|
|
if (typeof global.WebSocket !== "undefined") return global.WebSocket;
|
|
if (typeof window.WebSocket !== "undefined") return window.WebSocket;
|
|
if (typeof self.WebSocket !== "undefined") return self.WebSocket;
|
|
throw new Error("`WebSocket` is not supported in this environment");
|
|
}
|