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

    Variable object_setPrototypeOfConst

    object_setPrototypeOf: (o: any, proto: object | null) => any = ...

    alias for Object.setPrototypeOf.

    Type Declaration

      • (o: any, proto: object | null): any
      • Sets the prototype of a specified object o to object proto or null. Returns the object o.

        Parameters

        • o: any

          The object to change its prototype.

        • proto: object | null

          The value of the new prototype or null.

        Returns any