mirror of
https://github.com/swc-project/swc.git
synced 2024-12-02 12:05:54 +03:00
5 lines
152 B
JavaScript
5 lines
152 B
JavaScript
export function _is_native_function(fn) {
|
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
}
|
|
export { _is_native_function as _ };
|