• File: _basePropertyDeep.js
  • Full Path: /home/awtadalkhimacom/public_html/services/node_modules/lodash/_basePropertyDeep.js
  • Date Modified: 10/30/2025 4:29 AM
  • File size: 391 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;