Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
zenparsing committed Oct 28, 2022
1 parent 82960e0 commit acb9ed3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,15 @@ Observable.of(1, 2, 3).concat(
```

Merges the current observable with additional observables.

### observable.all()

```js
let observable = Observable.of(1, 2, 3);
for (let value of await observable.all()) {
console.log(value);
}
// 1, 2, 3
```

Returns a `Promise` for an array containing all of the values produced by the observable.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zen-observable",
"version": "0.8.15",
"version": "0.9.0",
"repository": "zenparsing/zen-observable",
"description": "An Implementation of ES Observables",
"homepage": "https://github.com/zenparsing/zen-observable",
Expand Down

0 comments on commit acb9ed3

Please sign in to comment.