Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@stdlib/utils-define-property
Advanced tools
Define (or modify) an object property.
npm install @stdlib/utils-define-property
var defineProperty = require( '@stdlib/utils-define-property' );
Defines (or modifies) an object property.
var obj = {};
defineProperty( obj, 'foo', {
'value': 'bar',
'writable': false
});
obj.foo = 'boop';
// throws <Error>
A property descriptor
has the following optional properties:
boolean
indicating if property descriptor can be changed and if the property can be deleted from the provided object. Default: false
.boolean
indicating if the property shows up when enumerating object properties. Default: false
.boolean
indicating if the value associated with the property can be changed with an assignment operator. Default: false
.function
which serves as a getter for the property, or, if no getter, undefined
. When the property is accessed, a getter function is called without arguments and with the this
context set to the object through which the property is accessed (which may not be the object on which the property is defined due to inheritance). The return value will be used as the property value. Default: undefined
.function
which serves as a setter for the property, or, if no setter, undefined
. When assigning a property value, a setter function is called with one argument (the value being assigned to the property) and with the this
context set to the object through which the property is assigned. Default: undefined
.var defineProperty = require( '@stdlib/utils-define-property' );
function Foo( name ) {
if ( !(this instanceof Foo) ) {
return new Foo( name );
}
defineProperty( this, 'name', {
'value': name,
'configurable': true
});
return this;
}
var foo = new Foo( 'beep' );
try {
delete foo.name;
console.log( '`name` property successfully deleted.' );
} catch ( err ) {
console.error( err.message );
}
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
FAQs
Define (or modify) an object property.
The npm package @stdlib/utils-define-property receives a total of 180,690 weekly downloads. As such, @stdlib/utils-define-property popularity was classified as popular.
We found that @stdlib/utils-define-property demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.