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

    Variable object_createConst

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

    alias for Object.create.

    Type declaration

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

        Parameters

        • o: null | object

          Object to use as a prototype. May be null.

        Returns any

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

        Parameters

        • o: null | object

          Object to use as a prototype. May be null

        • properties: PropertyDescriptorMap & ThisType<any>

          JavaScript object that contains one or more property descriptors.

        Returns any