PageRenderTime 44ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/w3c-validation/node_modules/w3cvalidator/node_modules/xml2js/node_modules/xmlbuilder/node_modules/lodash/collection/pluck.js

https://gitlab.com/germanocorrea/atom-personal-packages
JavaScript | 31 lines | 6 code | 2 blank | 23 comment | 0 complexity | 626844022b6c2673de24c86fd3e5508d MD5 | raw file
Possible License(s): Unlicense, JSON, Apache-2.0, GPL-3.0, BSD-3-Clause, MIT
  1. var baseProperty = require('../internal/baseProperty'),
  2. map = require('./map');
  3. /**
  4. * Gets the value of `key` from all elements in `collection`.
  5. *
  6. * @static
  7. * @memberOf _
  8. * @category Collection
  9. * @param {Array|Object|string} collection The collection to iterate over.
  10. * @param {string} key The key of the property to pluck.
  11. * @returns {Array} Returns the property values.
  12. * @example
  13. *
  14. * var users = [
  15. * { 'user': 'barney', 'age': 36 },
  16. * { 'user': 'fred', 'age': 40 }
  17. * ];
  18. *
  19. * _.pluck(users, 'user');
  20. * // => ['barney', 'fred']
  21. *
  22. * var userIndex = _.indexBy(users, 'user');
  23. * _.pluck(userIndex, 'age');
  24. * // => [36, 40] (iteration order is not guaranteed)
  25. */
  26. function pluck(collection, key) {
  27. return map(collection, baseProperty(key));
  28. }
  29. module.exports = pluck;