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