npm.io
2.10.19 • Published 4 years ago

@extra-array/cut-at-right

Licence
MIT
Version
2.10.19
Deps
0
Size
5 kB
Vulns
0
Weekly
0
Stars
17

Breaks array after given indices.

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

This is part of package extra-array.


array.cutAtRight(x, is);
// x:  an array
// is: split indices (sorted)
const array = require("extra-array");

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

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


References

Keywords