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

8 lines
318 B
Plaintext

function _checkPrivateRedeclaration(obj, privateCollection) {
if (privateCollection.has(obj)) {
throw new TypeError("Cannot initialize the same private elements twice on an object");
}
}
module.exports = _checkPrivateRedeclaration;
module.exports["default"] = module.exports, module.exports.__esModule = true;