instanceof.js 188 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. export { _instanceof as default };