Options
All
  • Public
  • Public/Protected
  • All
Menu

A little to get enumerable and nonenumerable properties

Hierarchy

  • default

Index

Constructors

constructor

Methods

Static getOwnAndPrototypeEnumerables

  • getOwnAndPrototypeEnumerables(obj: object): string[]
  • Get enumerable properties, include properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getOwnAndPrototypeEnumerablesAndNonenumerables

  • getOwnAndPrototypeEnumerablesAndNonenumerables(obj: object): string[]
  • Get enumerable and nonenumerable properties, include properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getOwnAndPrototypeNonenumerables

  • getOwnAndPrototypeNonenumerables(obj: object): string[]
  • Get nonenumerable properties, include properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getOwnEnumerables

  • getOwnEnumerables(obj: object): string[]
  • Get own enumerable properties, exclude properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getOwnEnumerablesAndNonenumerables

  • getOwnEnumerablesAndNonenumerables(obj: object): string[]
  • Get own enumerable and nonenumerable properties, exclude properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getOwnNonenumerables

  • getOwnNonenumerables(obj: object): string[]
  • Get own nonenumerable properties, exclude properties on the prototype chain.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getPrototypeEnumerables

  • getPrototypeEnumerables(obj: object): string[]
  • Get enumerable properties on the prototype chain, exclude own properties.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getPrototypeEnumerablesAndNonenumerables

  • getPrototypeEnumerablesAndNonenumerables(obj: object): string[]
  • Get enumerable and nonenumerable properties on the prototype chain, exclude own properties.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Static getPrototypeNonenumerables

  • getPrototypeNonenumerables(obj: object): string[]
  • Get nonenumerable properties on the prototype chain, exclude own properties.

    static
    memberof

    EasyPropertyRetriever

    Parameters

    • obj: object

    Returns string[]

Generated using TypeDoc