blob: 8c43b71787f5af926ae98cb50c9be3a0f5e8151c (
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;
}
}
|