astro-ghostcms/.pnpm-store/v3/files/61/604f5fa3d3b567f1d7a62a6107c...

6 lines
246 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);
}