basant307/AI_Governance_Project
045
1var arrayMap = require('./_arrayMap');2 3/**4 * The base implementation of `_.values` and `_.valuesIn` which creates an5 * array of `object` property values corresponding to the property names6 * of `props`.7 *8 * @private9 * @param {Object} object The object to query.10 * @param {Array} props The property names to get values for.11 * @returns {Object} Returns the array of property values.12 */13function baseValues(object, props) {14 return arrayMap(props, function(key) {15 return object[key];16 });17}18 19module.exports = baseValues;20 