Package Exports
- @extra-array/cut
Readme
Breaks array when test passes. 📦 😺 🏃 📼 🌔 📜 📰 📘
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 ] ]