Skip to content

Commit acb9ed3

Browse files
committed
Bump version
1 parent 82960e0 commit acb9ed3

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,15 @@ Observable.of(1, 2, 3).concat(
174174
```
175175

176176
Merges the current observable with additional observables.
177+
178+
### observable.all()
179+
180+
```js
181+
let observable = Observable.of(1, 2, 3);
182+
for (let value of await observable.all()) {
183+
console.log(value);
184+
}
185+
// 1, 2, 3
186+
```
187+
188+
Returns a `Promise` for an array containing all of the values produced by the observable.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zen-observable",
3-
"version": "0.8.15",
3+
"version": "0.9.0",
44
"repository": "zenparsing/zen-observable",
55
"description": "An Implementation of ES Observables",
66
"homepage": "https://github.com/zenparsing/zen-observable",

0 commit comments

Comments
 (0)