Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
@babel
/
runtime
/
helpers
/
esm
/
isNativeFunction.js
blob: 0cfe276f8df3438490cd2cbcc19385abded1fe6f [
file
] [
log
] [
blame
]
function
_isNativeFunction
(
t
)
{
try
{
return
-
1
!==
Function
.
toString
.
call
(
t
).
indexOf
(
"[native code]"
);
}
catch
(
n
)
{
return
"function"
==
typeof
t
;
}
}
export
{
_isNativeFunction as
default
};