* 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. * @ret
(object, props)
| 52220 | * @returns {Object} Returns the array of property values. |
| 52221 | */ |
| 52222 | function baseValues(object, props) { |
| 52223 | return arrayMap(props, function (key) { |
| 52224 | return object[key]; |
| 52225 | }); |
| 52226 | } |
| 52227 | |
| 52228 | module.exports = baseValues; |
| 52229 |