@basic-streams/take-while
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@basic-streams/take-while

takeWhile<T>(predicate: (x: T) => boolean, stream: Stream<T>): Stream<T>

Creates a stream containing each value from the given stream up until the first value x for which predicate(x) returns false.

import ofMany from "@basic-streams/of-many"
import takeWhile from "@basic-streams/take-while"

const stream = ofMany([0, 1, 2, 1], 5000)

const result = takeWhile(x => x < 2, stream)

result(x => {
  console.log(x)
})

// > 0
// > 1

// stream: ____0____1____2!
// result: ____0____1

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @basic-streams/take-while

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    7.12 kB

    Total Files

    8

    Last publish

    Collaborators

    • pozadi