callbag-take-while

2.0.0 • Public • Published

callbag-take-while

Callbag operator which emits values emitted by the source as long as each value satisfies the given predicate, and then completes as soon as predicate is not satisfied.

Example

import forEach from 'callbag-for-each'
import fromIter from 'callbag-from-iter'
import pipe from 'callbag-pipe'
import takeWhile from 'callbag-take-while'

pipe(
  fromIter([1, 2, 3, 4, 5]),
  takeWhile(i => i !== 4),
  forEach(value => {
    actual.push(value) // will log 1, 2, 3
  }),
)

Readme

Keywords

Package Sidebar

Install

npm i callbag-take-while

Weekly Downloads

2,957

Version

2.0.0

License

MIT

Unpacked Size

3.13 kB

Total Files

5

Last publish

Collaborators

  • andarist