node-system-stats / Exports / <internal> / Object
<internal>.Object
• constructor: Function
The initial value of Object.prototype.constructor is the standard built-in Object constructor.
node_modules/typescript/lib/lib.es5.d.ts:125
▸ hasOwnProperty(v): boolean
Determines whether an object has a property with the specified name.
| Name | Type | Description | 
|---|---|---|
v | 
      PropertyKey | 
      A property name. | 
boolean
node_modules/typescript/lib/lib.es5.d.ts:140
▸ isPrototypeOf(v): boolean
Determines whether an object exists in another object’s prototype chain.
| Name | Type | Description | 
|---|---|---|
v | 
      Object | 
      Another object whose prototype chain is to be checked. | 
boolean
node_modules/typescript/lib/lib.es5.d.ts:146
▸ propertyIsEnumerable(v): boolean
Determines whether a specified property is enumerable.
| Name | Type | Description | 
|---|---|---|
v | 
      PropertyKey | 
      A property name. | 
boolean
node_modules/typescript/lib/lib.es5.d.ts:152
▸ toLocaleString(): string
Returns a date converted to a string using the current locale.
string
node_modules/typescript/lib/lib.es5.d.ts:131
▸ toString(): string
Returns a string representation of an object.
string
node_modules/typescript/lib/lib.es5.d.ts:128
▸ valueOf(): Object
Returns the primitive value of the specified object.
node_modules/typescript/lib/lib.es5.d.ts:134