Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
474 bytes
|
Line | |
---|
1 | import { Subscriber } from '../Subscriber';
|
---|
2 | export function ignoreElements() {
|
---|
3 | return function ignoreElementsOperatorFunction(source) {
|
---|
4 | return source.lift(new IgnoreElementsOperator());
|
---|
5 | };
|
---|
6 | }
|
---|
7 | class IgnoreElementsOperator {
|
---|
8 | call(subscriber, source) {
|
---|
9 | return source.subscribe(new IgnoreElementsSubscriber(subscriber));
|
---|
10 | }
|
---|
11 | }
|
---|
12 | class IgnoreElementsSubscriber extends Subscriber {
|
---|
13 | _next(unused) {
|
---|
14 | }
|
---|
15 | }
|
---|
16 | //# sourceMappingURL=ignoreElements.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.