You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

object-define-property-x

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-define-property-x

Sham for Object.defineProperty

5.1.2
latest
Source
npm
Version published
Weekly downloads
343
-40.96%
Maintainers
1
Weekly downloads
 
Created
Source

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

object-define-property-x

Sham for Object.defineProperties

module.exports(object, prop, properties)Object

This method defines new or modifies existing properties directly on an object, returning the object.

Kind: Exported function
Returns: Object - The object that was passed to the function.

ParamTypeDescription
objectObjectThe object on which to define or modify properties.
pro*The name or Symbol of the property to be defined or modified.
propertiesObjectAn object whose own enumerable properties constitute descriptors for the properties to be defined or modified.

Example

import defineProperty from 'object-define-property-x';

const obj = {};
defineProperty(obj, 'key', {
  enumerable: false,
  configurable: false,
  writable: false,
  value: 'static',
});

Keywords

object

FAQs

Package last updated on 28 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts