* The opposite of `_.pickBy`; this method creates an object composed of * the own and inherited enumerable string keyed properties of `object` that * `predicate` doesn't return truthy for. The predicate is invoked with two * arguments: (value, key). * * @static * @membe
(object, predicate)
| 13635 | * // => { 'b': '2' } |
| 13636 | */ |
| 13637 | function omitBy(object, predicate) { |
| 13638 | return pickBy(object, negate(getIteratee(predicate))); |
| 13639 | } |
| 13640 | |
| 13641 | /** |
| 13642 | * Creates an object composed of the picked `object` properties. |
nothing calls this directly
no test coverage detected