isNativeFunction.js 280 B

12345678
  1. function _isNativeFunction(t) {
  2. try {
  3. return -1 !== Function.toString.call(t).indexOf("[native code]");
  4. } catch (n) {
  5. return "function" == typeof t;
  6. }
  7. }
  8. module.exports = _isNativeFunction, module.exports.__esModule = true, module.exports["default"] = module.exports;