Files
Remote-Control-Center/mc_test/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js
2025-11-25 09:56:15 +03:00

8 lines
207 B
JavaScript
Executable File

function _isNativeFunction(t) {
try {
return -1 !== Function.toString.call(t).indexOf("[native code]");
} catch (n) {
return "function" == typeof t;
}
}
export { _isNativeFunction as default };