source: trip-planner-front/node_modules/rxjs/internal/util/root.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 557 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var __window = typeof window !== 'undefined' && window;
4var __self = typeof self !== 'undefined' && typeof WorkerGlobalScope !== 'undefined' &&
5 self instanceof WorkerGlobalScope && self;
6var __global = typeof global !== 'undefined' && global;
7var _root = __window || __global || __self;
8exports.root = _root;
9(function () {
10 if (!_root) {
11 throw new Error('RxJS could not find any global context (window, self, global)');
12 }
13})();
14//# sourceMappingURL=root.js.map
Note: See TracBrowser for help on using the repository browser.