time-to-botec/js/node_modules/@stdlib/utils/define-nonenumerable-read-only-accessor/docs/repl.txt

29 lines
511 B
Plaintext
Raw Normal View History

{{alias}}( obj, prop, getter )
Defines a non-enumerable read-only accessor.
Non-enumerable read-only accessors are non-configurable.
Parameters
----------
obj: Object
Object on which to define the property.
prop: string|symbol
Property name.
getter: Function
Get accessor.
Examples
--------
> var obj = {};
> function getter() { return 'bar'; };
> {{alias}}( obj, 'foo', getter );
> obj.foo
'bar'
See Also
--------