Clarify docs on omitBy predicate params. [ci skip]

This commit is contained in:
Henrik Hjelte
2016-02-19 08:14:55 +01:00
committed by John-David Dalton
parent a71c19e1b5
commit 0194169e79

View File

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