source: trip-planner-front/node_modules/rxjs/internal/operators/tap.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: 3.1 KB
Line 
1"use strict";
2var __extends = (this && this.__extends) || (function () {
3 var extendStatics = function (d, b) {
4 extendStatics = Object.setPrototypeOf ||
5 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7 return extendStatics(d, b);
8 }
9 return function (d, b) {
10 extendStatics(d, b);
11 function __() { this.constructor = d; }
12 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
13 };
14})();
15Object.defineProperty(exports, "__esModule", { value: true });
16var Subscriber_1 = require("../Subscriber");
17var noop_1 = require("../util/noop");
18var isFunction_1 = require("../util/isFunction");
19function tap(nextOrObserver, error, complete) {
20 return function tapOperatorFunction(source) {
21 return source.lift(new DoOperator(nextOrObserver, error, complete));
22 };
23}
24exports.tap = tap;
25var DoOperator = (function () {
26 function DoOperator(nextOrObserver, error, complete) {
27 this.nextOrObserver = nextOrObserver;
28 this.error = error;
29 this.complete = complete;
30 }
31 DoOperator.prototype.call = function (subscriber, source) {
32 return source.subscribe(new TapSubscriber(subscriber, this.nextOrObserver, this.error, this.complete));
33 };
34 return DoOperator;
35}());
36var TapSubscriber = (function (_super) {
37 __extends(TapSubscriber, _super);
38 function TapSubscriber(destination, observerOrNext, error, complete) {
39 var _this = _super.call(this, destination) || this;
40 _this._tapNext = noop_1.noop;
41 _this._tapError = noop_1.noop;
42 _this._tapComplete = noop_1.noop;
43 _this._tapError = error || noop_1.noop;
44 _this._tapComplete = complete || noop_1.noop;
45 if (isFunction_1.isFunction(observerOrNext)) {
46 _this._context = _this;
47 _this._tapNext = observerOrNext;
48 }
49 else if (observerOrNext) {
50 _this._context = observerOrNext;
51 _this._tapNext = observerOrNext.next || noop_1.noop;
52 _this._tapError = observerOrNext.error || noop_1.noop;
53 _this._tapComplete = observerOrNext.complete || noop_1.noop;
54 }
55 return _this;
56 }
57 TapSubscriber.prototype._next = function (value) {
58 try {
59 this._tapNext.call(this._context, value);
60 }
61 catch (err) {
62 this.destination.error(err);
63 return;
64 }
65 this.destination.next(value);
66 };
67 TapSubscriber.prototype._error = function (err) {
68 try {
69 this._tapError.call(this._context, err);
70 }
71 catch (err) {
72 this.destination.error(err);
73 return;
74 }
75 this.destination.error(err);
76 };
77 TapSubscriber.prototype._complete = function () {
78 try {
79 this._tapComplete.call(this._context);
80 }
81 catch (err) {
82 this.destination.error(err);
83 return;
84 }
85 return this.destination.complete();
86 };
87 return TapSubscriber;
88}(Subscriber_1.Subscriber));
89//# sourceMappingURL=tap.js.map
Note: See TracBrowser for help on using the repository browser.