Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix typo in TS `take` example (#130)

authored by

Ian Kerins and committed by
GitHub
6c97ece7 f6d81674

+1 -1
+1 -1
docs/api/operators.md
··· 547 547 pipe( 548 548 interval(10), 549 549 throttle(() => 50) 550 - takew(2), 550 + take(2), 551 551 subscribe(val => console.log(val)) 552 552 ); // Outputs 0 6 to the console. 553 553 ```