hexo/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js

11 lines
417 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08: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;
}
}
2023-09-25 15:58:56 +08:00
module.exports = _classApplyDescriptorSet, module.exports.__esModule = true, module.exports["default"] = module.exports;