Skip to content

Instantly share code, notes, and snippets.

@codedmart
Last active August 29, 2015 14:14
Show Gist options
  • Save codedmart/e85bc7784392fabc4bc7 to your computer and use it in GitHub Desktop.
Save codedmart/e85bc7784392fabc4bc7 to your computer and use it in GitHub Desktop.
// Turn this into
{
one: {
a: {id: 1},
b: {id: 2}
},
two: {
c: {id: 3},
d: {id: 4}
},
three: {
e: {id: 5},
f: {id: 6}
}
}
// This
[
a: {id: 1},
b: {id: 2},
c: {id: 3},
d: {id: 4},
e: {id: 5},
f: {id: 6}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment