You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
280 B

3 months ago
  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;