mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
|
|
export default function _classPrivateMethodGet(receiver, privateSet, fn) {
|
||
|
|
if (!privateSet.has(receiver)) {
|
||
|
|
throw new TypeError("attempted to get private field on non-instance");
|
||
|
|
}
|
||
|
|
|
||
|
|
return fn;
|
||
|
|
}
|