Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created September 2, 2014 07:55
Show Gist options
  • Save Voronenko/a5936e23399b8485225b to your computer and use it in GitHub Desktop.
Save Voronenko/a5936e23399b8485225b to your computer and use it in GitHub Desktop.
array of objects => array (object_key,object)
var some_map = _.object(_.map(some_object_array, function(item) {
return [item.id, item]
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment