Last change
on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
776 bytes
|
Line | |
---|
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 |
---|
Note:
See
TracBrowser
for help on using the repository browser.