rxjs
Version:
Reactive Extensions for modern JavaScript
10 lines • 455 B
JavaScript
import { operate } from '../util/lift';
import { OperatorSubscriber } from './OperatorSubscriber';
export function skipWhile(predicate) {
return operate(function (source, subscriber) {
var taking = false;
var index = 0;
source.subscribe(new OperatorSubscriber(subscriber, function (value) { return (taking || (taking = !predicate(value, index++))) && subscriber.next(value); }));
});
}
//# sourceMappingURL=skipWhile.js.map