-
Notifications
You must be signed in to change notification settings - Fork 5
cut
Subhajit Sahu edited this page Mar 17, 2020
·
23 revisions
Breaks array at given indices.
array.cut(x, is);
// x: an array
// is: split indices (sorted)
// --> [...pieces]
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]]