UNPKG

@extra-array/split.min

Version:

Breaks array considering test as separator.

8 lines (5 loc) 167 B
const array = require("extra-array"); var x = [1, 2, 2, 3, 5, 4, 4, 7]; array.split(x, v => v % 2 === 0); var x = [2, 4, 5, 6, 8]; array.split(x, v => v % 2 === 0);