summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js
new file mode 100644
index 00000000..1e5aae50
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_basePropertyDeep.js
@@ -0,0 +1,16 @@
+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;