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

    Variable object_setPrototypeOfConst

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

    alias for Object.setPrototypeOf.

    Type declaration

      • (o: any, proto: null | object): 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: null | object

          The value of the new prototype or null.

        Returns any