-
Notifications
You must be signed in to change notification settings - Fork 5
split
Subhajit Sahu edited this page May 19, 2020
·
25 revisions
Breaks array considering test as separator. 🏃 📼 📦 🌔
array.split(x, fn, [ths]);
// x: an array
// fn: test function (v, i, x)
// ths: this argument
// --> [...pieces]
const array = require('extra-array');
var x = [1, 2, 2, 3, 5, 4, 4, 7];
array.split(x, v => v % 2 === 0);
// [ [ 1 ], [ 3, 5 ], [ 7 ] ]
var x = [2, 4, 5, 6, 8];
array.split(x, v => v % 2 === 0);
// [ [ 5 ] ]