All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._basePropertyDeep.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy