wonder-stuff
    Preparing search index...

    Variable valuesConst

    values: { <T>(obj: { [s: string]: T } | ArrayLike<T>): T[]; (obj: {}): any[] } = ...

    Return an array of the enumerable property values of an object.

    Type Declaration

      • <T>(obj: { [s: string]: T } | ArrayLike<T>): T[]
      • Type Parameters

        • T

        Parameters

        • obj: { [s: string]: T } | ArrayLike<T>

        Returns T[]

      • (obj: {}): any[]
      • Parameters

        • obj: {}

        Returns any[]

    The object for which the values are to be returned.

    An array of the enumerable property values of the object.