js-moi-utils
Version:
Collection of utility functions used in js-moi-sdk.
19 lines • 640 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.defineReadOnly = void 0;
/**
* Defines a read-only property on an object with the specified name and value.
*
* @param {object} object - The object on which to define the property.
* @param {string | symbol} name - The name of the property.
* @param {any} value - The value of the property.
*/
const defineReadOnly = (object, name, value) => {
Object.defineProperty(object, name, {
enumerable: true,
value: value,
writable: false,
});
};
exports.defineReadOnly = defineReadOnly;
//# sourceMappingURL=properties.js.map