JSPM

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

Define a write-only accessor.

Package Exports

  • @stdlib/utils-define-write-only-accessor

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-write-only-accessor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Write-Only Accessor

Define a write-only accessor.

Installation

npm install @stdlib/utils-define-write-only-accessor

Usage

var setWriteOnlyAccessor = require( '@stdlib/utils-define-write-only-accessor' );

setWriteOnlyAccessor( obj, prop, setter )

Defines a write-only accessor.

var obj = {};
var val = '';

function setter( v ) {
    val = v;
}

setWriteOnlyAccessor( obj, 'foo', setter );

obj.foo = 'boop';

var bool = ( val === 'boop' );
// returns true

Notes

  • Write-only accessors are enumerable and non-configurable.

Examples

var setWriteOnlyAccessor = require( '@stdlib/utils-define-write-only-accessor' );

function Foo( secret ) {
    if ( !(this instanceof Foo) ) {
        return new Foo( secret );
    }
    setWriteOnlyAccessor( this, 'secret', setter );
    return this;

    function setter( v ) {
        secret = v;
    }
}

var foo = new Foo( 'beep' );

foo.secret = 'boop';

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.


License

See LICENSE.

Copyright © 2016-2021. The Stdlib Authors.