Files
memecoin-botV2/.pnpm-store/v10/files/07/43ccf0d6d7be128584b9dc60fe38c0cf3e3dd5bf4bd4a67b5036bf12a24db89d800de3e765f48e1d8471ec31acd55e586dfaefc41d917d5434796cd13ab48f

7 lines
251 B
Plaintext

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 _ };