Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(every): Added description for every #4777

Merged
merged 2 commits into from Jun 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/internal/operators/every.ts
Expand Up @@ -6,6 +6,11 @@ import { Observer, OperatorFunction } from '../types';
/**
* Returns an Observable that emits whether or not every item of the source satisfies the condition specified.
*
* <span class="informal">If all values pass predicate before the source completes, emits true before completion,
* otherwise emit false, then complete.</span>
*
* ![](every.png)
*
* ## Example
* A simple example emitting true if all elements are less than 5, false otherwise
* ```ts
Expand Down