Sign in
chromium
/
devtools
/
devtools-frontend
/
0a3621c
/
.
/
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
;