Skip to content

Instantly share code, notes, and snippets.

@raine
Created June 25, 2013 11:10
Show Gist options
  • Select an option

  • Save raine/5857699 to your computer and use it in GitHub Desktop.

Select an option

Save raine/5857699 to your computer and use it in GitHub Desktop.
_.chain(obj)
.pairs()
.sortBy(function(a) {
return a[1];
})
.map(function(e) {
return _.object([e]);
})
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment