split-array

v1.0.1
Split an array into arrays of a specific length
split sub arrays array chunks partials

split-array Build Status

Split an array into arrays of a specific length

Install

$ npm install --save split-array

Usage

var splitArray = require('split-array');

splitArray(['a', 'b', 'c', 'd', 'e', 'f'], 2);
//=> [['a', 'b'], ['c', 'd'], ['e', 'f']]

splitArray(['a', 'b', 'c', 'd', 'e', 'f', 'foo'], 3);
//=> [['a', 'b', 'c'], ['d', 'e', 'f'], ['foo']]

API

splitArray(array, maxLength)

array

Required
Type: array

The array to split up.

maxLength

Required
Type: number

The maximum amount of items a partial can have

License

MIT © Arthur Verschaeve

npm i split-array

Metadata

  • MIT
  • >=0.10.0
  • Arthur Verschaeve
  • released 8/31/2015

Downloads

Maintainers