summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash/utility/property.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lodash/utility/property.js')
-rw-r--r--deps/npm/node_modules/lodash/utility/property.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/deps/npm/node_modules/lodash/utility/property.js b/deps/npm/node_modules/lodash/utility/property.js
deleted file mode 100644
index ddfd59798f..0000000000
--- a/deps/npm/node_modules/lodash/utility/property.js
+++ /dev/null
@@ -1,31 +0,0 @@
-var baseProperty = require('../internal/baseProperty'),
- basePropertyDeep = require('../internal/basePropertyDeep'),
- isKey = require('../internal/isKey');
-
-/**
- * Creates a function that returns the property value at `path` on a
- * given object.
- *
- * @static
- * @memberOf _
- * @category Utility
- * @param {Array|string} path The path of the property to get.
- * @returns {Function} Returns the new function.
- * @example
- *
- * var objects = [
- * { 'a': { 'b': { 'c': 2 } } },
- * { 'a': { 'b': { 'c': 1 } } }
- * ];
- *
- * _.map(objects, _.property('a.b.c'));
- * // => [2, 1]
- *
- * _.pluck(_.sortBy(objects, _.property(['a', 'b', 'c'])), 'a.b.c');
- * // => [1, 2]
- */
-function property(path) {
- return isKey(path) ? baseProperty(path) : basePropertyDeep(path);
-}
-
-module.exports = property;