2023-10-03 11:14:36 +08:00
|
|
|
export default function _checkPrivateRedeclaration(obj, privateCollection) {
|
|
|
|
if (privateCollection.has(obj)) {
|
|
|
|
throw new TypeError("Cannot initialize the same private elements twice on an object");
|
|
|
|
}
|
2023-09-25 15:58:56 +08:00
|
|
|
}
|