bpms_site/.svn/pristine/0d/0d43164770f26c5eb2bab8ba60853b394aeb5984.svn-base
2025-11-02 16:38:49 +03:30

5 lines
199 B
Plaintext

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