aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash._basevalues/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash._basevalues/index.js')
-rw-r--r--node_modules/lodash._basevalues/index.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/node_modules/lodash._basevalues/index.js b/node_modules/lodash._basevalues/index.js
deleted file mode 100644
index 28c8215e5..000000000
--- a/node_modules/lodash._basevalues/index.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * lodash 3.0.0 (Custom Build) <https://lodash.com/>
- * Build: `lodash modern modularize exports="npm" -o ./`
- * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
- * Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE>
- * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
- * Available under MIT license <https://lodash.com/license>
- */
-
-/**
- * The base implementation of `_.values` and `_.valuesIn` which creates an
- * array of `object` property values corresponding to the property names
- * returned by `keysFunc`.
- *
- * @private
- * @param {Object} object The object to query.
- * @param {Array} props The property names to get values for.
- * @returns {Object} Returns the array of property values.
- */
-function baseValues(object, props) {
- var index = -1,
- length = props.length,
- result = Array(length);
-
- while (++index < length) {
- result[index] = object[props[index]];
- }
- return result;
-}
-
-module.exports = baseValues;