bpms_site/.svn/pristine/e1/e1ed7a9b48c24b0d93048bf42d5fd80b9885bc1c.svn-base
2025-11-02 16:38:49 +03:30

5 lines
152 B
Plaintext

export function _is_native_function(fn) {
return Function.toString.call(fn).indexOf("[native code]") !== -1;
}
export { _is_native_function as _ };