time-to-botec/js/node_modules/@stdlib/utils/define-configurable-write-only-accessor/README.md

110 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

<!--
@license Apache-2.0
Copyright (c) 2019 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
# Configurable Write-Only Accessor
> [Define][@stdlib/utils/define-property] a configurable **write-only** accessor.
<section class="usage">
## Usage
<!-- eslint-disable id-length -->
```javascript
var setConfigurableWriteOnlyAccessor = require( '@stdlib/utils/define-configurable-write-only-accessor' );
```
#### setConfigurableWriteOnlyAccessor( obj, prop, setter )
[Defines][@stdlib/utils/define-property] a configurable **write-only** accessor.
<!-- eslint-disable id-length -->
```javascript
var obj = {};
var val = '';
function setter( v ) {
val = v;
}
setConfigurableWriteOnlyAccessor( obj, 'foo', setter );
obj.foo = 'boop';
var bool = ( val === 'boop' );
// returns true
```
</section>
<!-- /.usage -->
<section class="notes">
## Notes
- Configurable write-only accessors are **enumerable**.
</section>
<!-- /.notes -->
<section class="examples">
## Examples
<!-- eslint-disable id-length -->
<!-- eslint no-undef: "error" -->
```javascript
var setConfigurableWriteOnlyAccessor = require( '@stdlib/utils/define-configurable-write-only-accessor' );
function Foo( secret ) {
if ( !(this instanceof Foo) ) {
return new Foo( secret );
}
setConfigurableWriteOnlyAccessor( this, 'secret', setter );
return this;
function setter( v ) {
secret = v;
}
}
var foo = new Foo( 'beep' );
foo.secret = 'boop';
```
</section>
<!-- /.examples -->
<section class="links">
[@stdlib/utils/define-property]: https://www.npmjs.com/package/@stdlib/utils/tree/main/define-property
</section>
<!-- /.links -->