source: trip-planner-front/node_modules/rxjs/_esm5/internal/OuterSubscriber.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: 866 bytes
Line 
1/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */
2import * as tslib_1 from "tslib";
3import { Subscriber } from './Subscriber';
4var OuterSubscriber = /*@__PURE__*/ (function (_super) {
5 tslib_1.__extends(OuterSubscriber, _super);
6 function OuterSubscriber() {
7 return _super !== null && _super.apply(this, arguments) || this;
8 }
9 OuterSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {
10 this.destination.next(innerValue);
11 };
12 OuterSubscriber.prototype.notifyError = function (error, innerSub) {
13 this.destination.error(error);
14 };
15 OuterSubscriber.prototype.notifyComplete = function (innerSub) {
16 this.destination.complete();
17 };
18 return OuterSubscriber;
19}(Subscriber));
20export { OuterSubscriber };
21//# sourceMappingURL=OuterSubscriber.js.map
Note: See TracBrowser for help on using the repository browser.