We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Non-Enumerable Read-Only Accessor
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
[Define][@stdlib/utils/define-property] a non-enumerable read-only accessor.
bash
npm install @stdlib/utils-define-nonenumerable-read-only-accessor
javascript
var setNonEnumerableReadOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-read-only-accessor' );
#### setNonEnumerableReadOnlyAccessor( obj, prop, getter )
[Defines][@stdlib/utils/define-property] a non-enumerable read-only accessor.
javascript
function getter() {
return 'bar';
}
var obj = {};
setNonEnumerableReadOnlyAccessor( obj, 'foo', getter );
try {
obj.foo = 'boop';
// throws <Error>
} catch ( error ) {
console.error( error.message );
}
javascript
var setNonEnumerableReadOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-read-only-accessor' );
function Foo( name ) {
if ( !(this instanceof Foo) ) {
return new Foo( name );
}
setNonEnumerableReadOnlyAccessor( this, 'name', getName );
return this;
function getName() {
return name;
}
}
var foo = new Foo( 'beep' );
try {
foo.name = 'boop';
} catch ( err ) {
console.error( err.message );
}
@stdlib/utils-define-nonenumerable-property
][@stdlib/utils/define-nonenumerable-property]: define a non-enumerable property.
- [@stdlib/utils-define-nonenumerable-read-only-property
][@stdlib/utils/define-nonenumerable-read-only-property]: define a non-enumerable read-only property.
- [@stdlib/utils-define-nonenumerable-read-write-accessor
][@stdlib/utils/define-nonenumerable-read-write-accessor]: define a non-enumerable read-write accessor.
- [@stdlib/utils-define-nonenumerable-write-only-accessor
][@stdlib/utils/define-nonenumerable-write-only-accessor]: define a non-enumerable write-only accessor.
- [@stdlib/utils-define-read-only-accessor
][@stdlib/utils/define-read-only-accessor]: define a read-only accessor.