@stdlib/utils-define-nonenumerable-write-only-accessor
v0.2.2
Published
Define a non-enumerable write-only accessor.
Downloads
27
Readme
Non-Enumerable Write-Only Accessor
Define a non-enumerable write-only accessor.
Installation
npm install @stdlib/utils-define-nonenumerable-write-only-accessor
Usage
var setNonEnumerableWriteOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-write-only-accessor' );
setNonEnumerableWriteOnlyAccessor( obj, prop, setter )
Defines a non-enumerable write-only accessor.
var obj = {};
var val = '';
function setter( v ) {
val = v;
}
setNonEnumerableWriteOnlyAccessor( obj, 'foo', setter );
obj.foo = 'boop';
var bool = ( val === 'boop' );
// returns true
Notes
- Non-enumerable write-only accessors are non-configurable.
Examples
var setNonEnumerableWriteOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-write-only-accessor' );
function Foo( secret ) {
if ( !(this instanceof Foo) ) {
return new Foo( secret );
}
setNonEnumerableWriteOnlyAccessor( this, 'secret', setter );
return this;
function setter( v ) {
secret = v;
}
}
var foo = new Foo( 'beep' );
foo.secret = 'boop';
See Also
@stdlib/utils-define-nonenumerable-property
: define a non-enumerable property.@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-write-only-accessor
: define a write-only accessor.
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.