Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 831 Bytes

File metadata and controls

23 lines (13 loc) · 831 Bytes

{% if book.isPdf %}

takeUntil

{% else %}

{% endif %}

Returns the values from the source observable sequence until the other observable sequence or Promise produces a value.

Arguments

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

Returns

(Observable): An observable sequence containing the elements of the source sequence up to the point the other sequence or Promise interrupted further propagation.

Example