@traversable/schema
    Preparing search index...

    Variable Object_entriesConst

    Object_entries: {
        <T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][];
        (o: {}): [string, any][];
    } = globalThis.Object.entries

    Type declaration

      • <T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][]
      • Returns an array of key/values of the enumerable own properties of an object

        Type Parameters

        • T

        Parameters

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

          Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

        Returns [string, T][]

      • (o: {}): [string, any][]
      • Returns an array of key/values of the enumerable own properties of an object

        Parameters

        • o: {}

          Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

        Returns [string, any][]