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

5 lines
209 B
Plaintext

export default function _checkPrivateRedeclaration(obj, privateCollection) {
if (privateCollection.has(obj)) {
throw new TypeError("Cannot initialize the same private elements twice on an object");
}
}