Files
lodash/.internal/baseValues.js
John-David Dalton f3e0cbe5bf Use more Array#map.
2017-03-20 22:33:32 -07:00

16 lines
478 B
JavaScript

/**
* The base implementation of `values` and `valuesIn` which creates an
* array of `object` property values corresponding to the property names
* of `props`.
*
* @private
* @param {Object} object The object to query.
* @param {Array} props The property names to get values for.
* @returns {Object} Returns the array of property values.
*/
function baseValues(object, props) {
return props == null ? [] : props.map((key) => object[key])
}
export default baseValues