Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 643 Bytes

File metadata and controls

23 lines (12 loc) · 643 Bytes

{% if book.isPdf %}

doWhile

{% else %}

{% endif %}

Repeats source as long as condition holds emulating a do while loop.

Arguments

  1. condition (Function): The condition which determines if the source will be repeated.

Returns

(Observable): An observable sequence whose observers trigger an invocation of the given observable factory function.

Example