mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:19:30 +08:00
5 lines
No EOL
199 B
Text
5 lines
No EOL
199 B
Text
export default function _classCheckPrivateStaticAccess(receiver, classConstructor) {
|
|
if (receiver !== classConstructor) {
|
|
throw new TypeError("Private static access of wrong provenance");
|
|
}
|
|
} |