projecte_ionic/node_modules/@babel/runtime-corejs3/helpers/checkPrivateRedeclaration.js
2022-02-09 18:30:03 +01:00

8 lines
318 B
JavaScript
Executable file

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;