@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 359 B
TypeScript
export default baseAt;
/**
* The base implementation of `at` without support for individual paths.
*
* @private
* @param {Object} object The object to iterate over.
* @param {(string|number)[]} paths The property paths to pick.
* @returns {Array} Returns the picked elements.
*/
declare function baseAt(object: any, paths: (string | number)[]): any[];