We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Breaks array at given indices. 🏃 📼 📦 🌔
Alternatives: left, right.
array.cut(x, is); // x: an array // is: split indices (sorted)
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]]
There was an error while loading. Please reload this page.