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.

config.js 859B

12345678910111213141516171819
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. var _enable_super_gross_mode_that_will_cause_bad_things = false;
  3. export var config = {
  4. Promise: undefined,
  5. set useDeprecatedSynchronousErrorHandling(value) {
  6. if (value) {
  7. var error = /*@__PURE__*/ new Error();
  8. /*@__PURE__*/ console.warn('DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \n' + error.stack);
  9. }
  10. else if (_enable_super_gross_mode_that_will_cause_bad_things) {
  11. /*@__PURE__*/ console.log('RxJS: Back to a better error behavior. Thank you. <3');
  12. }
  13. _enable_super_gross_mode_that_will_cause_bad_things = value;
  14. },
  15. get useDeprecatedSynchronousErrorHandling() {
  16. return _enable_super_gross_mode_that_will_cause_bad_things;
  17. },
  18. };
  19. //# sourceMappingURL=config.js.map