Define a non-enumerable read-only property.
var setNonEnumerableReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
Defines a non-enumerable read-only property.
var obj = {};
setNonEnumerableReadOnly( obj, 'foo', 'bar' );
obj.foo = 'boop';
// throws <Error>
- Non-enumerable read-only properties are non-configurable.
var setNonEnumerableReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
function Foo( name ) {
if ( !(this instanceof Foo) ) {
return new Foo( name );
}
setNonEnumerableReadOnly( this, 'name', name );
return this;
}
var foo = new Foo( 'beep' );
try {
foo.name = 'boop';
} catch ( err ) {
console.error( err.message );
}
@stdlib/utils/define-nonenumerable-property
: define a non-enumerable property.@stdlib/utils/define-nonenumerable-read-only-accessor
: define a non-enumerable read-only accessor.@stdlib/utils/define-nonenumerable-read-write-accessor
: define a non-enumerable read-write accessor.@stdlib/utils/define-nonenumerable-write-only-accessor
: define a non-enumerable write-only accessor.@stdlib/utils/define-read-only-property
: define a read-only property.