@newdash/newdash
Version:
javascript/typescript utility library
10 lines (9 loc) • 314 B
TypeScript
export default basePropertyDeep;
/**
* A specialized version of `baseProperty` which supports deep paths.
*
* @private
* @param {Array|string} path The path of the property to get.
* @returns {Function} Returns the new accessor function.
*/
declare function basePropertyDeep(path: any[] | string): Function;