mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 18:37:50 +00:00
Bump to v3.0.0.
This commit is contained in:
30
utility/property.js
Normal file
30
utility/property.js
Normal file
@@ -0,0 +1,30 @@
|
||||
import baseProperty from '../internal/baseProperty';
|
||||
|
||||
/**
|
||||
* Creates a function which returns the property value of `key` on a given object.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @category Utility
|
||||
* @param {string} key The key of the property to get.
|
||||
* @returns {Function} Returns the new function.
|
||||
* @example
|
||||
*
|
||||
* var users = [
|
||||
* { 'user': 'fred' },
|
||||
* { 'user': 'barney' }
|
||||
* ];
|
||||
*
|
||||
* var getName = _.property('user');
|
||||
*
|
||||
* _.map(users, getName);
|
||||
* // => ['fred', barney']
|
||||
*
|
||||
* _.pluck(_.sortBy(users, getName), 'user');
|
||||
* // => ['barney', 'fred']
|
||||
*/
|
||||
function property(key) {
|
||||
return baseProperty(key + '');
|
||||
}
|
||||
|
||||
export default property;
|
||||
Reference in New Issue
Block a user