batch-reduce
v1.0.1
Published
batch-reduce
Downloads
5
Readme
batch-reduce
npm install batch-reduce
Usage:
const items = [/*list of items to be reduced*/];
const batchSize = 100; // default batch-size
const batchOp = (lastVal, batch) => {
// do something with batch and return val
};
const reducedVal = batchReduce(
items, batchSize, batchOp, val
);