bpms_site/.svn/pristine/e9/e946e11659c675051bfa83a23c6b7c7c9517ec3c.svn-base
2025-11-02 16:38:49 +03:30

10 lines
358 B
Plaintext

function _classExtractFieldDescriptor(receiver, privateMap, action) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to " + action + " private field on non-instance");
}
return privateMap.get(receiver);
}
module.exports = _classExtractFieldDescriptor;
module.exports["default"] = module.exports, module.exports.__esModule = true;