mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
14 lines
No EOL
409 B
JavaScript
14 lines
No EOL
409 B
JavaScript
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; |