instanceof.js 261 B

1234
  1. function _instanceof(n, e) {
  2. return null != e && "undefined" != typeof Symbol && e[Symbol.hasInstance] ? !!e[Symbol.hasInstance](n) : n instanceof e;
  3. }
  4. module.exports = _instanceof, module.exports.__esModule = true, module.exports["default"] = module.exports;