4ecb4f0cf9894aab4e30a7c4a817e6ba8eafe014b24b6faf0eb60830e4341e57e9aa6ad121ebfc25b1f66f0367a882998b02f9c7a20acae369cea6b601b4f0 391 B

12345678910111213141516
  1. var baseGet = require('./_baseGet');
  2. /**
  3. * A specialized version of `baseProperty` which supports deep paths.
  4. *
  5. * @private
  6. * @param {Array|string} path The path of the property to get.
  7. * @returns {Function} Returns the new accessor function.
  8. */
  9. function basePropertyDeep(path) {
  10. return function(object) {
  11. return baseGet(object, path);
  12. };
  13. }
  14. module.exports = basePropertyDeep;