From 0194169e79738b70c08d2a6469340621f3737399 Mon Sep 17 00:00:00 2001 From: Henrik Hjelte Date: Fri, 19 Feb 2016 08:14:55 +0100 Subject: [PATCH] Clarify docs on omitBy predicate params. [ci skip] --- lodash.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index a67be636b..a986c6c5d 100644 --- a/lodash.js +++ b/lodash.js @@ -11659,9 +11659,10 @@ }); /** - * The opposite of `_.pickBy`; this method creates an object composed of the - * own and inherited enumerable properties of `object` that `predicate` - * doesn't return truthy for. + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable properties of `object` that `predicate` + * doesn't return truthy for. The predicate is invoked with two arguments: + * (value, key). * * @static * @memberOf _