@stdlib/utils-define-nonenumerable-property
v0.2.2
Published
Define a non-enumerable property.
Downloads
611
Readme
Non-Enumerable Property
Define a non-enumerable property.
Installation
npm install @stdlib/utils-define-nonenumerable-property
Usage
var setNonEnumerableProperty = require( '@stdlib/utils-define-nonenumerable-property' );
setNonEnumerableProperty( obj, prop, value )
Defines a non-enumerable property.
var obj = {};
setNonEnumerableProperty( obj, 'foo', 'bar' );
var v = obj.foo;
// returns 'bar'
Notes
- Non-enumerable properties are writable and configurable.
Examples
var objectKeys = require( '@stdlib/utils-keys' );
var setNonEnumerableProperty = require( '@stdlib/utils-define-nonenumerable-property' );
function Foo( name ) {
if ( !(this instanceof Foo) ) {
return new Foo( name );
}
setNonEnumerableProperty( this, 'name', name );
return this;
}
var foo = new Foo( 'beep' );
var v = foo.name;
// returns 'beep'
var keys = objectKeys( foo );
// returns []
See Also
@stdlib/utils-define-nonenumerable-read-only-accessor
: define a non-enumerable read-only accessor.@stdlib/utils-define-nonenumerable-read-only-property
: define a non-enumerable read-only property.@stdlib/utils-define-nonenumerable-read-write-accessor
: define a non-enumerable read-write accessor.@stdlib/utils-define-nonenumerable-write-only-accessor
: define a non-enumerable write-only accessor.@stdlib/utils-define-read-only-property
: define a read-only property.
Notice
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.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.