Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
492 bytes
|
Line | |
---|
1 | const __window = typeof window !== 'undefined' && window;
|
---|
2 | const __self = typeof self !== 'undefined' && typeof WorkerGlobalScope !== 'undefined' &&
|
---|
3 | self instanceof WorkerGlobalScope && self;
|
---|
4 | const __global = typeof global !== 'undefined' && global;
|
---|
5 | const _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 | })();
|
---|
11 | export { _root as root };
|
---|
12 | //# sourceMappingURL=root.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.