blob: 8c43b71787f5af926ae98cb50c9be3a0f5e8151c [file] [log] [blame]
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;
}
}