source: trip-planner-front/node_modules/rxjs/_esm2015/internal/config.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: 776 bytes
Line 
1let _enable_super_gross_mode_that_will_cause_bad_things = false;
2export 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
Note: See TracBrowser for help on using the repository browser.