GT2/Ejectable/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js

14 lines
409 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
function _classApplyDescriptorSet(receiver, descriptor, value) {
if (descriptor.set) {
descriptor.set.call(receiver, value);
} else {
if (!descriptor.writable) {
throw new TypeError("attempted to set read only private field");
}
descriptor.value = value;
}
}
module.exports = _classApplyDescriptorSet;
module.exports["default"] = module.exports, module.exports.__esModule = true;