create-batches

1.0.3 • Public • Published

Create Batches based on max batch size limit!

const createBatches = require('create-batches');

let batches1 = createBatches([[2,3,4,5,1,4,8,7]], 3);
console.log(batches1);

let batches2 = createBatches([[2,3,4,5,1,4,8,7], [143,54,124,543,1342]], 3);
console.log(batches2);


OUTPUT - 
[ [ 2, 3, 4 ], [ 5, 1, 4 ], [ 8, 7 ] ]

[ [ 2, 3, 4 ], [ 5, 1, 4 ], [ 8, 7 ], [ 143, 54, 124 ], [ 543, 1342 ] ]

Package Sidebar

Install

npm i create-batches

Weekly Downloads

4

Version

1.0.3

License

ISC

Unpacked Size

1.89 kB

Total Files

3

Last publish

Collaborators

  • namansanura