UNPKG

ut2

Version:

一个现代 JavaScript 实用工具库。[点击查看在线文档]。

11 lines (8 loc) 294 B
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 };