@edenchazard/tiny-chunk-array
v1.0.1
Published
A super simple, super short helper to chunk arrays.
Readme
tiny-chunk-array
A super simple, super short helper to chunk arrays.
Usage
import { chunkArray } from '@edenchazard/tiny-chunk-array';
chunkArray([1, 2, 3, 4, 5], 2); // [[1, 2], [3, 4], [5]]Testing
npm run test:unitBuilding
npm run build