NeahNew/node_modules/@swc/helpers/cjs/_is_native_function.cjs
2025-05-03 14:17:46 +02:00

7 lines
156 B
JavaScript

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