Skip to content

Instantly share code, notes, and snippets.

@funnythingz
Last active March 20, 2018 04:22
Show Gist options
  • Save funnythingz/6397818a28d6106714951849233777a9 to your computer and use it in GitHub Desktop.
Save funnythingz/6397818a28d6106714951849233777a9 to your computer and use it in GitHub Desktop.
var a = [
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2]
];
_.map(a, function(o) {
return {
c:[
{v: o[0]},
{v: o[1]}
]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment