Created
December 12, 2018 13:53
-
-
Save Kasahs/67725d5a62993d9ad4a0501c24871ca2 to your computer and use it in GitHub Desktop.
batching helper
This file contains hidden or 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
function* batches(volume, batchSize) { | |
let parts = Math.ceil(volume / batchSize) | |
for (let i = 0; i < parts; i++) { | |
yield { value: Math.min(volume, batchSize), index: i } | |
volume -= batchSize | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment