feat: initial commit
This commit is contained in:
16
node_modules/rxjs/_esm2015/internal/Observer.js
generated
vendored
Normal file
16
node_modules/rxjs/_esm2015/internal/Observer.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
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
|
Reference in New Issue
Block a user