Skip to content

Instantly share code, notes, and snippets.

@douglascayers
Created November 17, 2020 20:58
Show Gist options
  • Save douglascayers/b7d7f5724f08cd6f78c3495760d51561 to your computer and use it in GitHub Desktop.
Save douglascayers/b7d7f5724f08cd6f78c3495760d51561 to your computer and use it in GitHub Desktop.
Chunk an array into smaller segments
/**
* 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