swc/packages/swc-helpers/src/_instanceof.mjs

7 lines
232 B
JavaScript
Raw Normal View History

2021-12-05 09:46:09 +03:00
export default function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
2021-12-05 09:46:09 +03:00
} else {
return left instanceof right;
}
}