Sign in
chromium
/
devtools
/
devtools-frontend
/
ec00a13ce62ddc9f5697a4e4d30dfcafaacd9fc2
/
.
/
node_modules
/
@babel
/
runtime
/
helpers
/
instanceof.js
blob: efe134c135f21cb924e0604a6ab486c3a915985b [
file
]
function
_instanceof
(
left
,
right
)
{
if
(
right
!=
null
&&
typeof
Symbol
!==
"undefined"
&&
right
[
Symbol
.
hasInstance
])
{
return
!!
right
[
Symbol
.
hasInstance
](
left
);
}
else
{
return
left instanceof right
;
}
}
module
.
exports
=
_instanceof
;