Initial
This commit is contained in:
14
resources/app/node_modules/engine.io-client/build/cjs/globalThis.browser.js
generated
vendored
Normal file
14
resources/app/node_modules/engine.io-client/build/cjs/globalThis.browser.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.globalThisShim = void 0;
|
||||
exports.globalThisShim = (() => {
|
||||
if (typeof self !== "undefined") {
|
||||
return self;
|
||||
}
|
||||
else if (typeof window !== "undefined") {
|
||||
return window;
|
||||
}
|
||||
else {
|
||||
return Function("return this")();
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user