Skip to content

Commit 9c78c52

Browse files
committed
chore(combineAll): update to rxjs 6
1 parent dd3e68d commit 9c78c52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

operators/combination/combineall.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
##### Example 1: Mapping to inner interval observable
1616

17-
( [StackBlitz](https://stackblitz.com/edit/typescript-itxyuv?file=index.ts&devtoolsheight=50) |
18-
[jsBin](http://jsbin.com/cokinogime/edit?js,console) |
19-
[jsFiddle](https://jsfiddle.net/btroncone/pvj1nbLa/) )
17+
(
18+
[StackBlitz](https://stackblitz.com/edit/typescript-fbxfyh?file=index.ts&devtoolsheight=100)
19+
)
2020

2121
```js
2222
import { take, map, combineAll } from 'rxjs/operators';
23-
import { interval } from 'rxjs/observable/interval';
23+
import { interval } from 'rxjs';
2424

2525
//emit every 1s, take 2
2626
const source = interval(1000).pipe(take(2));

0 commit comments

Comments
 (0)