Sign in
chromium
/
devtools
/
devtools-frontend
/
0a3621c
/
.
/
node_modules
/
@babel
/
runtime
/
helpers
/
esm
/
isNativeFunction.js
blob: 7b1bc821f760d145c90cc8c7c91f9303dea72646 [
file
]
export
default
function
_isNativeFunction
(
fn
)
{
return
Function
.
toString
.
call
(
fn
).
indexOf
(
"[native code]"
)
!==
-
1
;
}