Created
August 25, 2017 19:15
-
-
Save jsdbroughton/260efa22c770a6201ac4545f8fc3a6f2 to your computer and use it in GitHub Desktop.
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
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