···414414415415Run a callback on each `Push` signal sent to the sink by the source.
416416417417+> _Note:_ This operator is also exported as `tap` which is just an alias for `onPush`
418418+417419```reason
418420Wonka.fromArray([|1, 2, 3, 4, 5, 6|])
419421 |> Wonka.onPush((. x) => print_string({j|Push $x|j}))