There was an error while loading. Please reload this page.
Break array after given indices.
Alternatives: cut, cutRight, cutAt, cutAtRight. Similar: cut, split, group.
function cutAtRight(x, is) // x: an array // is: split indices (sorted)
const xarray = require('extra-array'); var x = [1, 2, 3, 4, 5]; xarray.cutAtRight(x, [1, 3]); // → [ [ 1, 2 ], [ 3, 4 ], [ 5 ] ] xarray.cutAtRight(x, [0, 4]); // → [ [ 1 ], [ 2, 3, 4, 5 ], [] ]