Rx.Observable.prototype.pairwise()

Triggers on the second and subsequent triggerings of the input observable. The Nth triggering of the input observable passes the arguments from the N-1th and Nth triggering as a pair.

Returns

(Observable): An observable that triggers on successive pairs of observations from the input observable as an array.

Example