chache/@babel/runtime/helpers/isNativeFunction.js

5 lines
138 B
JavaScript
Raw Normal View History

2024-01-16 22:53:42 +08:00
function _isNativeFunction(n) {
return -1 !== Function.toString.call(n).indexOf("[native code]");
}
module.exports = _isNativeFunction;