bpms_site/.svn/pristine/27/27c411fa7cc849dd214cde9f63bae7d0bc3be09d.svn-base
2025-11-02 16:38:49 +03:30

7 lines
258 B
Plaintext

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