source: trip-planner-front/node_modules/rxjs/_esm2015/internal/operators/ignoreElements.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 474 bytes
Line 
1import { Subscriber } from '../Subscriber';
2export function ignoreElements() {
3 return function ignoreElementsOperatorFunction(source) {
4 return source.lift(new IgnoreElementsOperator());
5 };
6}
7class IgnoreElementsOperator {
8 call(subscriber, source) {
9 return source.subscribe(new IgnoreElementsSubscriber(subscriber));
10 }
11}
12class IgnoreElementsSubscriber extends Subscriber {
13 _next(unused) {
14 }
15}
16//# sourceMappingURL=ignoreElements.js.map
Note: See TracBrowser for help on using the repository browser.