Created
October 24, 2022 16:56
-
-
Save pketh/3a06ca31e7ce05b8e3086298f60b33c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
groupIntoBatches (array) { | |
const batchSize = 100 | |
const totalBatches = Math.ceil(array.length / batchSize) | |
let batches = [] | |
_.times(totalBatches, (index) => { | |
const start = index * batchSize | |
let end = (index + 1) * batchSize | |
const batch = array.slice(start, end) | |
batches.push(batch) | |
}) | |
return batches | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment