Skip to content

Instantly share code, notes, and snippets.

@jsdbroughton
Created August 25, 2017 19:15
Show Gist options
  • Save jsdbroughton/260efa22c770a6201ac4545f8fc3a6f2 to your computer and use it in GitHub Desktop.
Save jsdbroughton/260efa22c770a6201ac4545f8fc3a6f2 to your computer and use it in GitHub Desktop.
if (!Array.prototype.transpose) {
Array.prototype.transpose = function() {
return this.reduce(function(array, next) {
return next.map(function(item, i) {
return (array[i] || []).concat(next[i]);
});
}, []);
}
}
// var transposed = data.transpose();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment