Variable: dropWhileConcur
const
dropWhileConcur:SubWhileConcur
Defined in: splices.d.ts:72
Returns a concur iterable containing the values of concurIterable
in
iteration order starting with the first value for which fn
returns a value
awaitable to a falsy value.
Example
console.log(
await pipe(
asConcur([1, 2, 3, 4, 5, 6, 7, 8, `sloth`]),
dropWhileConcur(value => value < 5),
reduceConcur(toArray()),
),
)
//=> [ 5, 6, 7, 8, 'sloth' ]
Since
v0.0.2