mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
a13a78e3fe
**BREAKING CHANGE:** Breaking changes for `@swc/helpers`. A new major version `0.5.0` is required. **Related issue:** - Closes https://github.com/swc-project/swc/issues/7157
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 _ };
|