From b3ebb3c3d3cf394113d8e9c05578161e7f1cdeb4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 12 Feb 2016 14:11:42 -0800 Subject: [PATCH] Add `_.fromPairs` to mention to `_.toPairs` and `_.toPairsIn`. [ci skip] --- lodash.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 93e3a9edb..9b35f92ff 100644 --- a/lodash.js +++ b/lodash.js @@ -11711,7 +11711,8 @@ } /** - * Creates an array of own enumerable key-value pairs for `object`. + * Creates an array of own enumerable key-value pairs for `object` which + * can be consumed by `_.fromPairs`. * * @static * @memberOf _ @@ -11735,7 +11736,8 @@ } /** - * Creates an array of own and inherited enumerable key-value pairs for `object`. + * Creates an array of own and inherited enumerable key-value pairs for + * `object` which can be consumed by `_.fromPairs`. * * @static * @memberOf _