All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules.pluck.js Maven / Gradle / Ivy

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));
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy