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

7 lines
232 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00: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;
}
}