mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-07 06:29:13 +08:00
7 lines
No EOL
247 B
Text
7 lines
No EOL
247 B
Text
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);
|
|
} |