makearmy-app/node_modules/@swc/helpers/cjs/_is_native_function.cjs
2025-09-22 10:37:53 -04:00

6 lines
156 B
JavaScript

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