blob: 51f1e67da7bc0e291e87870a56772e683726f45a [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;
}
}