Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
@babel
/
runtime
/
helpers
/
esm
/
checkPrivateRedeclaration.js
blob: e9e6b3b46cf7dca490eb934078e9739a87cb7c1e [
file
] [
log
] [
blame
]
function
_checkPrivateRedeclaration
(
e
,
t
)
{
if
(
t
.
has
(
e
))
throw
new
TypeError
(
"Cannot initialize the same private elements twice on an object"
);
}
export
{
_checkPrivateRedeclaration as
default
};