From 5522e4641d6c8d89c8c0e5842ca04b011bcc58f9 Mon Sep 17 00:00:00 2001 From: Trevor Hudson Date: Mon, 1 Feb 2016 11:09:36 -0500 Subject: [PATCH] Update `_.pickBy` docs to include `value` as an `iteratee` param. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 412490972..ced1c9483 100644 --- a/lodash.js +++ b/lodash.js @@ -11410,7 +11410,7 @@ /** * Creates an object composed of the `object` properties `predicate` returns - * truthy for. The predicate is invoked with one argument: (value). + * truthy for. The predicate is invoked with two arguments: (value, key). * * @static * @memberOf _