* 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 function.
(path)
| 4021 | * @returns {Function} Returns the new function. |
| 4022 | */ |
| 4023 | function basePropertyDeep(path) { |
| 4024 | var pathKey = (path + ''); |
| 4025 | path = toPath(path); |
| 4026 | return function(object) { |
| 4027 | return baseGet(object, path, pathKey); |
| 4028 | }; |
| 4029 | } |
| 4030 | |
| 4031 | /** |
| 4032 | * The base implementation of `_.pullAt` without support for individual |