Skip to content

Instantly share code, notes, and snippets.

@yoko
Created August 3, 2009 10:55
Show Gist options
  • Save yoko/160491 to your computer and use it in GitHub Desktop.
Save yoko/160491 to your computer and use it in GitHub Desktop.
Array.prototype.split = function(n) {
var ret = [], i = 0;
while (n && (ret[i++] = this.splice(0, n)).length == n && this.length);
return ret;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment