control-freak-ide/server/nodejs/dist/arm/_build/global.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

19 lines
475 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const globalObject = (function () {
if (typeof window !== 'undefined') {
// Browsers
return window;
}
else if (typeof global !== 'undefined') {
// Node
return global;
}
else if (typeof self !== 'undefined') {
// Web workers
return self;
}
return {};
})();
exports.default = globalObject;
//# sourceMappingURL=global.js.map