bpms_site/.svn/pristine/1d/1ddd979fc0d9dcdfcf68d9f24bae290d8ceb9b93.svn-base
2025-11-02 16:38:49 +03:30

7 lines
186 B
Plaintext

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