Created
October 18, 2017 20:25
-
-
Save akopcz2/c1916d7c9dae9e087000b34a180c82c1 to your computer and use it in GitHub Desktop.
chunk
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
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