frontend/.pnpm-store/v3/files/13/b7159bf4ace00db55543d806228ba51143a23a120743f48960285880fa7117a657da2b7d24914569bb1e6083b816603c72c30865bfc23adf48ca674734d4da

16 lines
389 B
Plaintext

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