Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 804 Bytes

File metadata and controls

24 lines (14 loc) · 804 Bytes

{% if book.isPdf %}

every

{% else %}

{% endif %}

Determines whether all elements of an observable sequence satisfy a condition.

Arguments

  1. predicate (Function): A function to test each element for a condition.
  2. [thisArg] (Function): Object to use as this when executing callback.

Returns

(Observable): An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.

Example