swc/packages/swc-helpers/src/_check_private_redeclaration.mjs

6 lines
210 B
JavaScript
Raw Normal View History

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