import { stubFlase } from './internals/helpers.js';
import negate from './negate.js';
import pickBy from './pickBy.js';
function omitBy(object, predicate) {
if (predicate === void 0) { predicate = stubFlase; }
return pickBy(object, negate(predicate));
}
export { omitBy as default };