We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Break iterable when test passes.
Alternatives: cut, cutRight, cutAt, cutAtRight. Similar: cut, split, group.
function cut(x, ft) // x: an iterable // ft: test function (v, i, x)
const xiterable = require('extra-iterable'); var x = [1, 2, 3, 4, 5]; [...xiterable.cut(x, v => v % 2 === 0)]; // → [[1], [2, 3], [4, 5]] [...xiterable.cut(x, v => v % 2 === 1)]; // → [[], [1, 2], [3, 4], [5]]