isNativeFunction.js 274 B

123456789
  1. var _indexOfInstanceProperty = require("../core-js/instance/index-of");
  2. function _isNativeFunction(fn) {
  3. var _context;
  4. return _indexOfInstanceProperty(_context = Function.toString.call(fn)).call(_context, "[native code]") !== -1;
  5. }
  6. module.exports = _isNativeFunction;