1.0.1 • Published 6 years ago

callbag-pairwise v1.0.1

Weekly downloads
105
License
MIT
Repository
github
Last release
6 years ago

callbag-pairwise

Emits the previous and current values as an array

Example

import forEach from 'callbag-for-each'
import fromIterable from 'callbag-from-iter'
import pairwise from 'pairwise'
import pipe from 'callbag-pipe'

pipe(
  fromIterable([1, 2, 3, 4, 5]),
  pairwise,
  forEach(value => {
    // will log [1, 2], [2, 3], [3, 4], [4, 5]
    console.log(value)
  }),
)
1.0.1

6 years ago

1.0.0

6 years ago