Skip to content

Instantly share code, notes, and snippets.

@nbqx
Created January 31, 2014 02:30
Show Gist options
  • Save nbqx/8725640 to your computer and use it in GitHub Desktop.
Save nbqx/8725640 to your computer and use it in GitHub Desktop.
_.mixin({
pluckNest: function(obj,names){
return _.reduce(names,function(o,n){
return _.pluck(o,n)
},obj);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment