Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created January 18, 2016 18:52
Show Gist options
  • Save uhtred/d56447d81cf74fbe27c5 to your computer and use it in GitHub Desktop.
Save uhtred/d56447d81cf74fbe27c5 to your computer and use it in GitHub Desktop.
Map Pick Lodash
(function() {
'use strict';
function mapPick(collection, keys) {
return _.map(collection, _.partialRight(_.pick, keys));
}
_.mixin({
'mapPick': mapPick
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment