securityos/node_modules/@swc/helpers/esm/_is_native_function.js

5 lines
152 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
export function _is_native_function(fn) {
return Function.toString.call(fn).indexOf("[native code]") !== -1;
}
export { _is_native_function as _ };