takeWhile(condition)
Create a new Enumerable taking values while condition
returns true.
Arguments
- condition (function): function used to determine if an item must be added to the Enumerable
Returns
(Enumerable): New Enumerable with taken values.
Example
Enumerable
.from([1, 2, 3, 4, 5])
.takeWhile(x => x < 4)
.toArray()
// [1, 2, 3]