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

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

The newest version!
var map = require('./map.js');
var property = require('./property.js');

// Convenience version of a common use case of `_.map`: fetching a property.
function pluck(obj, key) {
  return map(obj, property(key));
}

module.exports = pluck;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy