Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
@babel
/
runtime
/
helpers
/
newArrowCheck.js
blob: 9b59f58c87f85f2f08224aec3dba9b2ffbdf648c [
file
]
function
_newArrowCheck
(
innerThis
,
boundThis
)
{
if
(
innerThis
!==
boundThis
)
{
throw
new
TypeError
(
"Cannot instantiate an arrow function"
);
}
}
module
.
exports
=
_newArrowCheck
;