Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/rxjs/src/internal/operators/skipWhile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ export function skipWhile<T>(predicate: (value: T, index: number) => boolean): M
*
* ![](skipWhile.png)
*
* Skips all the notifications with a truthy predicate. It will not skip the notifications when the predicate is falsy.
* It can also be skipped using index. Once the predicate is true, it will not be called again.
* Skips all the notifications where the given predicate returns a truthy value. Once the predicate is falsey, it will not be called again, and all further notifications will be emitted.
*
* ## Example
*
Expand Down