1/** 2 * lodash 3.0.0 (Custom Build) <https://lodash.com/> 3 * Build: `lodash modern modularize exports="npm" -o ./` 4 * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> 5 * Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE> 6 * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors 7 * Available under MIT license <https://lodash.com/license> 8 */ 9 10/** 11 * The base implementation of `_.values` and `_.valuesIn` which creates an 12 * array of `object` property values corresponding to the property names 13 * returned by `keysFunc`. 14 * 15 * @private 16 * @param {Object} object The object to query. 17 * @param {Array} props The property names to get values for. 18 * @returns {Object} Returns the array of property values. 19 */ 20function baseValues(object, props) { 21 var index = -1, 22 length = props.length, 23 result = Array(length); 24 25 while (++index < length) { 26 result[index] = object[props[index]]; 27 } 28 return result; 29} 30 31module.exports = baseValues; 32 33