chatty-pub/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js
كارل مبارك 374620645c initial commit
2021-06-26 13:12:56 +02:00

11 lines
302 B
JavaScript

export default 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;
}
}