Options
All
  • Public
  • Public/Protected
  • All
Menu

Module src/object/filterObj

Index

Functions

Functions

default

  • 判断对象自身属性中是否具有指定的属性

    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: ''}
    

    Parameters

    • obj: Obj

      待过滤的对象

    • filterArr: string[]

      由obj中要过滤的key组成的数组

    • options: Options = ...

      参数配置,传nullType: null | undefined | '' 默认为空字符''

    Returns Obj

    过滤后的对象. 注:key-value. vulue为0. 过滤后value也为0

Generated using TypeDoc