@extra-array/cut
v2.10.19
Published
Breaks array when test passes.
Downloads
195
Readme
Breaks array when test passes. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
This is part of package extra-array.
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 ] ]