1.0.1 • Published 9 years ago

blow-chunks v1.0.1

Weekly downloads
25
License
ISC
Repository
-
Last release
9 years ago

blow-chunks Build Status Code Climate Test Coverage

split an array into arbitrary length pieces

this doesn't modify the array prototype. which means you have to invoke it by using function.prototype.call, kinda sucks, but hey...

install
npm install --save blow-chunks
usage
var chunk = require('blow-chunks');
chunk([1, 2, 3, 4, 5, 6], 2);
// [[1, 2], [3, 4], [5, 6]]
1.0.1

9 years ago

1.0.0

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago