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

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

The newest version!
define(['./map', './property'], function (map, property) {

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

  return pluck;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy