Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 23 revisions

Breaks array when test passes. 🏃 📼 📦 🌔 📒

Alternatives: cut, cutRight.
Similar: cut, split, group.


array.cut(x, ft);
// x:  an array
// ft: test function (v, i, x)
const array = require("extra-array");

var x = [1, 2, 3, 4, 5];
array.cut(x, [1, 3]);
// [ [ 1 ], [ 2, 3 ], [ 4, 5 ] ]

array.cut(x, [0, 4]);
// [ [], [ 1, 2, 3, 4 ], [ 5 ] ]


References

Clone this wiki locally