Skip to content

Instantly share code, notes, and snippets.

@Goblinlordx
Last active July 23, 2024 00:34
Show Gist options
  • Save Goblinlordx/74196b3b4f5066d6fcb0cf12a1c522f5 to your computer and use it in GitHub Desktop.
Save Goblinlordx/74196b3b4f5066d6fcb0cf12a1c522f5 to your computer and use it in GitHub Desktop.
export function chunk(arr, size) {
const output = [];
for (let i = 0; i < arr.length; i += size) {
output.push(arr.slice(i, i + size));
}
return output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment