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 776B

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