JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13188
  • Score
    100M100P100Q176037F
  • License Apache-2.0

Define a non-enumerable read-write accessor.

Package Exports

  • @stdlib/utils-define-nonenumerable-read-write-accessor
  • @stdlib/utils-define-nonenumerable-read-write-accessor/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/utils-define-nonenumerable-read-write-accessor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Non-Enumerable Read-Write Accessor

NPM version Build Status Coverage Status

Define a non-enumerable read-write accessor.

Installation

npm install @stdlib/utils-define-nonenumerable-read-write-accessor

Usage

var setNonEnumerableReadWriteAccessor = require( '@stdlib/utils-define-nonenumerable-read-write-accessor' );

setNonEnumerableReadWriteAccessor( obj, prop, getter, setter )

Defines a non-enumerable read-write accessor.

var word = 'bar';
var obj = {};

function getter() {
    return word + ' foo';
}

function setter( v ) {
    word = v;
}

setNonEnumerableReadWriteAccessor( obj, 'foo', getter, setter );

var v = obj.foo;
// returns 'bar foo'

obj.foo = 'beep';

v = obj.foo;
// returns 'beep foo'

Notes

  • Non-enumerable read-write accessors are non-configurable.

Examples

var setNonEnumerableReadWriteAccessor = require( '@stdlib/utils-define-nonenumerable-read-write-accessor' );

function Foo( name ) {
    if ( !(this instanceof Foo) ) {
        return new Foo( name );
    }
    setNonEnumerableReadWriteAccessor( 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 );

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

Chat


License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.