blob: 51f1e67da7bc0e291e87870a56772e683726f45a (
plain)
1
2
3
4
5
6
7
|
export default function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return right[Symbol.hasInstance](left);
} else {
return left instanceof right;
}
}
|