frontend/.pnpm-store/v3/files/56/4d31d9869edfa95c94ffcebb15074ab2765a0f954789e7f1efa827ef7279f4a343015b644c12352131b97a9267efe79147e739cfc75d46ebfca407f2d0bdf8

18 lines
494 B
Plaintext

/** PURE_IMPORTS_START _config,_util_hostReportError PURE_IMPORTS_END */
import { config } from './config';
import { hostReportError } from './util/hostReportError';
export var empty = {
closed: true,
next: function (value) { },
error: function (err) {
if (config.useDeprecatedSynchronousErrorHandling) {
throw err;
}
else {
hostReportError(err);
}
},
complete: function () { }
};
//# sourceMappingURL=Observer.js.map