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.

Add tap alias to onPush operator documentation (#77)

authored by

Will Golledge and committed by
GitHub
86a6f70d 38c545a7

+2
+2
docs/api/operators.md
··· 414 414 415 415 Run a callback on each `Push` signal sent to the sink by the source. 416 416 417 + > _Note:_ This operator is also exported as `tap` which is just an alias for `onPush` 418 + 417 419 ```reason 418 420 Wonka.fromArray([|1, 2, 3, 4, 5, 6|]) 419 421 |> Wonka.onPush((. x) => print_string({j|Push $x|j}))