Learn RxJS
Search
⌃K

skipWhile

signature: skipWhile(predicate: Function): Observable

Skip emitted values from source until provided expression is false.

Ultimate RxJS

Examples

Example 1: Skip while values below threshold
// RxJS v6+
import { interval } from 'rxjs';
import { skipWhile } from 'rxjs/operators';
//emit every 1s
const source = interval(1000);
//skip emitted values from source while value is less than 5
const example = source.pipe(skipWhile(val => val < 5));
//output: 5...6...7...8........
const subscribe = example.subscribe(val => console.log(val));

Additional Resources

Last modified 3yr ago