mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -11,9 +11,7 @@ import arrayMap from './_arrayMap.js';
|
||||
* @returns {Object} Returns the array of property values.
|
||||
*/
|
||||
function baseValues(object, props) {
|
||||
return arrayMap(props, function(key) {
|
||||
return object[key];
|
||||
});
|
||||
return arrayMap(props, key => object[key]);
|
||||
}
|
||||
|
||||
export default baseValues;
|
||||
|
||||
Reference in New Issue
Block a user