From 1a5b9dcce14bdd13cb6704d3bb349925a7f4892e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 19 Feb 2016 01:04:19 -0800 Subject: [PATCH] Add iteratee signature to `_.mapKeys`. [ci skip] --- lodash.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index a986c6c5d..c4d428ea9 100644 --- a/lodash.js +++ b/lodash.js @@ -11498,7 +11498,8 @@ /** * The opposite of `_.mapValues`; this method creates an object with the * same values as `object` and keys generated by running each own enumerable - * property of `object` through `iteratee`. + * property of `object` through `iteratee`. The iteratee is invoked with + * three arguments: (value, key, object). * * @static * @memberOf _