summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/toPairs.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/toPairs.js')
-rw-r--r--tools/eslint/node_modules/lodash/toPairs.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/eslint/node_modules/lodash/toPairs.js b/tools/eslint/node_modules/lodash/toPairs.js
index 417ac8ce9c..c4f52ae00e 100644
--- a/tools/eslint/node_modules/lodash/toPairs.js
+++ b/tools/eslint/node_modules/lodash/toPairs.js
@@ -1,9 +1,10 @@
-var baseToPairs = require('./_baseToPairs'),
+var createToPairs = require('./_createToPairs'),
keys = require('./keys');
/**
* Creates an array of own enumerable string keyed-value pairs for `object`
- * which can be consumed by `_.fromPairs`.
+ * which can be consumed by `_.fromPairs`. If `object` is a map or set, its
+ * entries are returned.
*
* @static
* @memberOf _
@@ -11,7 +12,7 @@ var baseToPairs = require('./_baseToPairs'),
* @alias entries
* @category Object
* @param {Object} object The object to query.
- * @returns {Array} Returns the new array of key-value pairs.
+ * @returns {Array} Returns the key-value pairs.
* @example
*
* function Foo() {
@@ -24,8 +25,6 @@ var baseToPairs = require('./_baseToPairs'),
* _.toPairs(new Foo);
* // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)
*/
-function toPairs(object) {
- return baseToPairs(object, keys(object));
-}
+var toPairs = createToPairs(keys);
module.exports = toPairs;