Skip to content

Instantly share code, notes, and snippets.

@abiank
Forked from femto113/transpose.js
Created January 8, 2014 03:03
Show Gist options
  • Save abiank/8311099 to your computer and use it in GitHub Desktop.
Save abiank/8311099 to your computer and use it in GitHub Desktop.
function transpose(a)
{
return Object.keys(a[0]).map(function (c) { return a.map(function (r) { return r[c]; }); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment