Created
November 17, 2020 20:58
-
-
Save douglascayers/b7d7f5724f08cd6f78c3495760d51561 to your computer and use it in GitHub Desktop.
Chunk an array into smaller segments
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
/** | |
* https://stackoverflow.com/questions/8495687/split-array-into-chunks | |
*/ | |
const chunkArray = <T>(options: { | |
data: T[]; | |
chunkSize: number; | |
}): Array<T[]> => { | |
const { data, chunkSize } = options; | |
const length = Math.ceil(data.length / chunkSize); | |
const results = new Array<T[]>(); | |
for (let i = 0; i < length; i++) { | |
const start = i * chunkSize; | |
const end = start + chunkSize; | |
results.push(data.slice(start, end)); | |
} | |
return results; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment