array-each-slice
v1.0.1
Published
Adds eachSlice to Array.
Maintainers
Readme
js-array-each-slice
Adds eachSlice to js Array.
Install:
npm i array-each-sliceUsage examples:
import 'array-each-slice';
[1,2,3,4].eachSlice(2) // [[1,2], [3,4]]
[1,2,3,4].forEachSlice(2, callback, thisArg) // Equals [1,2,3,4].eachSlice(2).forEach(callback, thisArg)