Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

root.js 492B

123456789101112
  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