Urara-Blog/node_modules/.pnpm-store/v3/files/fd/2f38c70c51917ca8f216ce04bac5f1ed848707f4cdb81e55288faa24d37d6026a0e8df730f869fb345083ebed11b79b20f41f8344f244a04ab1003c4fa4796
2022-08-14 01:14:53 +08:00

7 lines
No EOL
232 B
Text

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;
}
}