in-groups-of

0.0.1 • Public • Published

in-groups-of

Return an array of arrays in groups of N

Installation

$ component install component/in-groups-of

Example

var nums = [1,2,3,4,5,6,7,8,9,10];
 
inGroupsOf(nums, 5)
// => [[1,2,3,4,5], [6,7,8,9,10]]
 
inGroupsOf(nums, 4)
// => [[1,2,3,4], [5,6,7,8], [9,10]]
 
inGroupsOf(nums, 2)
//=> [[1,2], [3,4], [5,6], [7,8], [9,10]]

License

MIT

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i in-groups-of

    Weekly Downloads

    517

    Version

    0.0.1

    License

    none

    Last publish

    Collaborators

    • tjholowaychuk