basant307/AI_Governance_Project
045
1import baseGet from './_baseGet.js';2 3/**4 * A specialized version of `baseProperty` which supports deep paths.5 *6 * @private7 * @param {Array|string} path The path of the property to get.8 * @returns {Function} Returns the new accessor function.9 */10function basePropertyDeep(path) {11 return function(object) {12 return baseGet(object, path);13 };14}15 16export default basePropertyDeep;17 