Last change
on this file 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 */
|
---|
2 | import { config } from './config';
|
---|
3 | import { hostReportError } from './util/hostReportError';
|
---|
4 | export 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.