API 文档工具与插件functionsomitBy()本页总览omitBy() function omitBy<T>(object, fn): T; Defined in: object/omitBy.ts:7 创建一个新对象,通过方法除了指定的属性 Type Parameters Type ParameterT extends Record<string, any> Parameters ParameterTypeDescriptionobjectT源对象fn(value, key) => boolean判断函数,返回 true 时排除该属性 Returns T 新对象