@stdlib/utils-define-configurable-read-write-accessor
v0.2.2
Published
Define a configurable read-write accessor.
Downloads
23
Readme
Configurable Read-Write Accessor
Define a configurable read-write accessor.
Installation
npm install @stdlib/utils-define-configurable-read-write-accessor
Usage
var setConfigurableReadWriteAccessor = require( '@stdlib/utils-define-configurable-read-write-accessor' );
setConfigurableReadWriteAccessor( obj, prop, getter, setter )
Defines a configurable read-write accessor.
var word = 'bar';
var obj = {};
function getter() {
return word + ' foo';
}
function setter( v ) {
word = v;
}
setConfigurableReadWriteAccessor( obj, 'foo', getter, setter );
var v = obj.foo;
// returns 'bar foo'
obj.foo = 'beep';
v = obj.foo;
// returns 'beep foo'
Notes
- Configurable read-write accessors are enumerable.
Examples
var setConfigurableReadWriteAccessor = require( '@stdlib/utils-define-configurable-read-write-accessor' );
function Foo( name ) {
if ( !(this instanceof Foo) ) {
return new Foo( name );
}
setConfigurableReadWriteAccessor( this, 'name', getName, setName );
return this;
function getName() {
return 'Hello, ' + name;
}
function setName( v ) {
name = v;
}
}
var foo = new Foo( 'Grace' );
console.log( foo.name );
foo.name = 'Ada';
console.log( foo.name );
See Also
@stdlib/utils-define-configurable-read-only-property
: define a configurable read-only property.@stdlib/utils-define-configurable-read-only-accessor
: define a configurable read-only accessor.@stdlib/utils-define-configurable-write-only-accessor
: define a configurable write-only accessor.@stdlib/utils-define-property
: define (or modify) an object property.@stdlib/utils-define-read-write-accessor
: define a read-write 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.