mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
16 lines
478 B
JavaScript
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
|