dc0781c5ba716d6f0d94461402e6d68334dc6f6e480b8cf7da5a454f318f82bd8cf03bf03e9b6cda79679e065cc9453df2d0c46937be5ed1954c668100fc08 389 B

12345678910111213141516
  1. import baseGet from './_baseGet.js';
  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. export default basePropertyDeep;