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