Your IP : 216.73.216.220


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm5/internal/operators/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/rxjs/dist/esm5/internal/operators/skipWhile.js

import { operate } from '../util/lift';
import { createOperatorSubscriber } from './OperatorSubscriber';
export function skipWhile(predicate) {
    return operate(function (source, subscriber) {
        var taking = false;
        var index = 0;
        source.subscribe(createOperatorSubscriber(subscriber, function (value) { return (taking || (taking = !predicate(value, index++))) && subscriber.next(value); }));
    });
}
//# sourceMappingURL=skipWhile.js.map