Add iteratee signature to _.mapKeys. [ci skip]

This commit is contained in:
John-David Dalton
2016-02-19 01:04:19 -08:00
parent 1240a0dfdd
commit 1a5b9dcce1

View File

@@ -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 _