Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ReactiveX/rxjs/llms.txt
Use this file to discover all available pages before exploring further.
Overview
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.Type Signature
Parameters
A function to test each item emitted from the source Observable. Once returns false, all subsequent values pass through.
Returns
MonoTypeOperatorFunction<T> - A function that returns an Observable that begins emitting items when the predicate becomes false.
