astro-ghostcms/.pnpm-store/v3/files/4e/3031a5a802c845e7ddf7307487c...

8 lines
325 B
Plaintext

function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
} else {
return left instanceof right;
}
}
module.exports = _instanceof, module.exports.__esModule = true, module.exports["default"] = module.exports;