Skip to content

Commit

Permalink
mention issue for takeWhileInclusive ReactiveX/rxjs#2420 in readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsik committed Jun 20, 2017
1 parent 465a71d commit 0f8eb81
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

Collection of extra RxJS 5 operators:

- [`cache`](https://github.com/martinsik/rxjs-extra#cachewindowtime-number-options-cacheoptions---scheduler-scheduler)
- [`endWith`](https://github.com/martinsik/rxjs-extra#endwithvalues-arrayt)
- [`queueTime`](https://github.com/martinsik/rxjs-extra#queuetimedelay-number-scheduler-scheduler)
- [`rateLimit`](https://github.com/martinsik/rxjs-extra#ratelimitcount-number-timewindow-number-emitasap-boolean--false-scheduler-scheduler)
- [`takeWhileInclusive`](https://github.com/martinsik/rxjs-extra#takewhileinclusivepredicate-value-t-index-number--boolean)
- [`cache`](https://github.com/martinsik/rxjs-extra#cache)
- [`endWith`](https://github.com/martinsik/rxjs-extra#endwith)
- [`queueTime`](https://github.com/martinsik/rxjs-extra#queuetime)
- [`rateLimit`](https://github.com/martinsik/rxjs-extra#ratelimit)
- [`takeWhileInclusive`](https://github.com/martinsik/rxjs-extra#takewhileinclusive)

# Usage

Expand Down Expand Up @@ -44,6 +44,8 @@ Observable.range(1, 3)
.subscribe(console.log);
```

Feel free to experiment with demos in the [`/demo`](https://github.com/martinsik/rxjs-extra/tree/master/demo) directory.

# List of operators

## cache
Expand Down Expand Up @@ -225,6 +227,8 @@ Observable.range(1, 6)

The preceding example will print numbers from `1` to `4` including.

This operator has also been discussed in RxJS 5 in [ReactiveX/rxjs#2420](https://github.com/ReactiveX/rxjs/issues/2420).

See demo: [`demo/takeWhileInclusive.js`](https://github.com/martinsik/rxjs-extra/blob/master/demo/takeWhileInclusive.js)

# Testing
Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@
"url": "git+https://github.com/martinsik/rxjs-extra.git"
},
"keywords": [
"rxjs",
"rx"
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable",
"Stream"
],
"author": "Martin Sikora",
"license": "MIT",
Expand Down

0 comments on commit 0f8eb81

Please sign in to comment.