Files
socket.io/lib/globalThis.browser.js

10 lines
204 B
JavaScript

module.exports = (() => {
if (typeof self !== "undefined") {
return self;
} else if (typeof window !== "undefined") {
return window;
} else {
return Function("return this")();
}
})();