Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created October 18, 2017 20:25
Show Gist options
  • Save akopcz2/c1916d7c9dae9e087000b34a180c82c1 to your computer and use it in GitHub Desktop.
Save akopcz2/c1916d7c9dae9e087000b34a180c82c1 to your computer and use it in GitHub Desktop.
chunk
let chunkRecipe = recipe.reduce((ar, it, i) => {
const value = Math.floor(i/this.rateLimit);
if(!ar[value]) {
ar[value] = [];
}
ar[value].push(it);
return ar;
}, [])
this.chunks.push(chunkRecipe);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment