1export default function _classCheckPrivateStaticAccess(receiver, classConstructor) { 2 if (receiver !== classConstructor) { 3 throw new TypeError("Private static access of wrong provenance"); 4 } 5} 6