@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Variable object_getOwnPropertyNamesConst

    object_getOwnPropertyNames: (o: any) => string[] = ...

    alias for Object.getOwnPropertyNames.

    Type declaration

      • (o: any): string[]
      • Returns the names of the own properties of an object. The own properties of an object are those that are defined directly on that object, and are not inherited from the object's prototype. The properties of an object include both fields (objects) and functions.

        Parameters

        • o: any

          Object that contains the own properties.

        Returns string[]