MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / basePropertyDeep

Function basePropertyDeep

lib/web/jshint.js:4023–4029  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 1

propertyFunction · 0.85

Calls 2

toPathFunction · 0.85
baseGetFunction · 0.85

Tested by

no test coverage detected