Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 782 Bytes

File metadata and controls

24 lines (13 loc) · 782 Bytes

{% if book.isPdf %}

while

{% else %}

{% endif %}

Repeats source as long as condition holds emulating a while loop. There is an alias for this method called 'whileDo' for browsers <IE9.

Arguments

  1. condition (Function): The condition which determines if the source will be repeated.
  2. source (Observable): The observable sequence that will be run if the condition function returns true.

Returns

(Observable): An observable sequence which is repeated as long as the condition holds.

Example