Partie-2/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

9 lines
276 B
JavaScript

function _classStaticPrivateFieldSpecGet(receiver, classConstructor, descriptor) {
if (receiver !== classConstructor) {
throw new TypeError("Private static access of wrong provenance");
}
return descriptor.value;
}
module.exports = _classStaticPrivateFieldSpecGet;