astro-ghostcms/.pnpm-store/v3/files/fd/2f38c70c51917ca8f216ce04bac...

7 lines
232 B
Plaintext

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