@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 339 B
TypeScript
export default baseGet;
/**
* The base implementation of `get` without support for default values.
*
* @private
* @param {Object} object The object to query.
* @param {Array|string} path The path of the property to get.
* @returns {*} Returns the resolved value.
*/
declare function baseGet(object: any, path: any[] | string): any;