2023-10-03 11:14:36 +08:00
|
|
|
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;
|
|
|
|
}
|
2023-09-25 15:58:56 +08:00
|
|
|
}
|