1.0.3 • Published 1 year ago

create-batches v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

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 ] ]
1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago