Urara-Blog/node_modules/.pnpm-store/v3/files/2c/4ecb4f0cf9894aab4e30a7c4a817e6ba8eafe014b24b6faf0eb60830e4341e57e9aa6ad121ebfc25b1f66f0367a882998b02f9c7a20acae369cea6b601b4f0
2022-08-14 01:14:53 +08:00

16 lines
391 B
Text

var baseGet = require('./_baseGet');
/**
* 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.
*/
function basePropertyDeep(path) {
return function(object) {
return baseGet(object, path);
};
}
module.exports = basePropertyDeep;