Rx.Observable.prototype.skipUntil(other)

skipUntil

Returns the values from the source observable sequence only after the other observable sequence produces a value.

参数

  1. other (Observable | Promise): The observable sequence or Promise that triggers propagation of elements of the source sequence.

返回值

(Observable): An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.