Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/i18n / dist / cjs / node_modules / lodash / _basePropertyDeep.js
Size: Mime:
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

var _baseGet = require('./_baseGet.js');

/**
 * 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.default(object, path);
  };
}

var _basePropertyDeep = basePropertyDeep;

exports.__moduleExports = _basePropertyDeep;
exports.default = _basePropertyDeep;
//# sourceMappingURL=_basePropertyDeep.js.map