source: trip-planner-front/node_modules/rxjs/_esm5/internal/Observer.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 494 bytes
Line 
1/** PURE_IMPORTS_START _config,_util_hostReportError PURE_IMPORTS_END */
2import { config } from './config';
3import { hostReportError } from './util/hostReportError';
4export var empty = {
5 closed: true,
6 next: function (value) { },
7 error: function (err) {
8 if (config.useDeprecatedSynchronousErrorHandling) {
9 throw err;
10 }
11 else {
12 hostReportError(err);
13 }
14 },
15 complete: function () { }
16};
17//# sourceMappingURL=Observer.js.map
Note: See TracBrowser for help on using the repository browser.