UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

19 lines (17 loc) 821 B
import { Observable } from '../Observable'; import { skipWhile as higherOrder } from '../operators/skipWhile'; /** * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds * true, but emits all further source items as soon as the condition becomes false. * * <img src="./img/skipWhile.png" width="100%"> * * @param {Function} predicate - A function to test each item emitted from the source Observable. * @return {Observable<T>} An Observable that begins emitting items emitted by the source Observable when the * specified predicate becomes false. * @method skipWhile * @owner Observable */ export function skipWhile<T>(this: Observable<T>, predicate: (value: T, index: number) => boolean): Observable<T> { return higherOrder(predicate)(this); }