BACK
ReferenceskipUntil
Reference · 101

skipUntil

skipUntil

rxjs.dev

Skips values until the notifier emits.

Signature

skipUntil(notifier: ObservableInput): MonoTypeOperatorFunction

What it does

Until the notifier's first value, all source next values are dropped. After the notifier signals, source values pass through as usual.

When to use

Start listening to a stream after a user action, after config loads, after a mode starts.

See also

takeUntil, skipWhile

script.ts // TypeScript
CONSOLE · Console output
Hit Run to see the result...