feat: initial commit
This commit is contained in:
13
node_modules/rxjs/_esm2015/internal/OuterSubscriber.js
generated
vendored
Normal file
13
node_modules/rxjs/_esm2015/internal/OuterSubscriber.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
import { Subscriber } from './Subscriber';
|
||||
export class OuterSubscriber extends Subscriber {
|
||||
notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) {
|
||||
this.destination.next(innerValue);
|
||||
}
|
||||
notifyError(error, innerSub) {
|
||||
this.destination.error(error);
|
||||
}
|
||||
notifyComplete(innerSub) {
|
||||
this.destination.complete();
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=OuterSubscriber.js.map
|
Reference in New Issue
Block a user