判断对象自身属性中是否具有指定的属性
utilsLibrary.filterObj( { a: 1, b: 2, 'c': 'c', d: {a: 1}, e: [1,2,3], f: 'f'}, ['a', 'd', 'e', 'g'], { nullType: '' } ) // { a: 1, d: {a: 1}, e: [1,2,3], g: ''}
待过滤的对象
由obj中要过滤的key组成的数组
参数配置,传nullType: null | undefined | '' 默认为空字符''
过滤后的对象. 注:key-value. vulue为0. 过滤后value也为0
Generated using TypeDoc
判断对象自身属性中是否具有指定的属性