lecoffre-back/node_modules/@swc/helpers/lib/_is_native_function.js
2023-02-17 11:06:01 +01:00

14 lines
319 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return _isNativeFunction;
}
});
function _isNativeFunction(fn) {
return Function.toString.call(fn).indexOf("[native code]") !== -1;
}