source: trip-planner-front/node_modules/rxjs/_esm2015/internal/util/root.js@ 6a3a178

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

initial commit

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