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

    Variable object_createConst

    object_create: {
        (o: object | null): any;
        (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
    } = ...

    alias for Object.create.

    Type Declaration

      • (o: object | null): any
      • Creates an object that has the specified prototype or that has null prototype.

        Parameters

        • o: object | null

          Object to use as a prototype. May be null.

        Returns any

      • (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any
      • Creates an object that has the specified prototype, and that optionally contains specified properties.

        Parameters

        • o: object | null

          Object to use as a prototype. May be null

        • properties: PropertyDescriptorMap & ThisType<any>

          JavaScript object that contains one or more property descriptors.

        Returns any