JSPM

chunk

0.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 26003
  • Score
    100M100P100Q153104F
  • License MIT

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

Package Exports

  • chunk

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (chunk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.