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

9 lines
301 B
Plaintext

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