summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/internal/basePropertyDeep.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/internal/basePropertyDeep.js')
-rw-r--r--tools/eslint/node_modules/lodash/internal/basePropertyDeep.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/eslint/node_modules/lodash/internal/basePropertyDeep.js b/tools/eslint/node_modules/lodash/internal/basePropertyDeep.js
deleted file mode 100644
index 1b6ce40a17..0000000000
--- a/tools/eslint/node_modules/lodash/internal/basePropertyDeep.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var baseGet = require('./baseGet'),
- toPath = require('./toPath');
-
-/**
- * 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.
- */
-function basePropertyDeep(path) {
- var pathKey = (path + '');
- path = toPath(path);
- return function(object) {
- return baseGet(object, path, pathKey);
- };
-}
-
-module.exports = basePropertyDeep;