chunk
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/chunk package

0.0.3 • Public • Published

Build Release

Chunk converts arrays like [1,2,3,4,5] into arrays of arrays like [[1,2], [3,4], [5]].

Chunk, from The Goonies

You can install chunk using npm ...

npm install chunk

or bower ...

bower install chunk

Examples

To chunk an array into an array of smaller arrays, simply call chunk:

> var chunk = require('chunk')
> chunk([1,2,3])
[ [ 1, 2 ], [ 3 ] ]
 

To chunk an array into an array of N-sized arrays, call chunk with N:

> chunk([1,2,3], 1)
[ [ 1 ], [ 2 ], [ 3 ] ]
> chunk([1,2,3], 3)
[ [ 1, 2, 3 ] ]

The default chunk size is 2.

Readme

Keywords

Package Sidebar

Install

npm i chunk

Weekly Downloads

38,783

Version

0.0.3

License

MIT

Unpacked Size

3.76 kB

Total Files

8

Last publish

Collaborators

  • ryancole