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

7 lines
247 B
Plaintext

export default function _classExtractFieldDescriptor(receiver, privateMap, action) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to " + action + " private field on non-instance");
}
return privateMap.get(receiver);
}