package.modules.pluck.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of underscore Show documentation
Show all versions of underscore Show documentation
JavaScript's functional programming helper library.
The newest version!
import map from './map.js';
import property from './property.js';
// Convenience version of a common use case of `_.map`: fetching a property.
export default function pluck(obj, key) {
return map(obj, property(key));
}