UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

13 lines (12 loc) 438 B
export default baseValues; /** * 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. */ declare function baseValues(object: any, props: any[]): any;