* 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 nam
(object, props)
| 11642 | * @returns {Object} Returns the array of property values. |
| 11643 | */ |
| 11644 | function baseValues(object, props) { |
| 11645 | return arrayMap(props, function(key) { |
| 11646 | return object[key]; |
| 11647 | }); |
| 11648 | } |
| 11649 | |
| 11650 | /** |
| 11651 | * Checks if a `cache` value for `key` exists. |