Created
March 25, 2020 11:01
-
-
Save metoikos/86afe747973c07559872d4bba04d1d6f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| const chunk = (arr: any, size: number) => Array.from({ | |
| length: Math.ceil(arr.length, size) | |
| }, (v: any, i: any) => arr.slice(i * size, i * size + size)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment