Last active
August 29, 2015 14:19
-
-
Save return-none/157f8a5eb0c8c9cbdd0e 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
var chunked = function (items, per_chunk) { | |
return items.reduce(function (chunks, item) { | |
if (chunks[chunks.length-1].length === per_chunk) { | |
chunks.push([]); | |
} | |
chunks[chunks.length-1].push(item); | |
return chunks; | |
}, [[]]); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good.