Files
memecoin-botV2/.pnpm-store/v10/files/c5/48470fd4b0f8038f69306b562a1944296e93efd9ffc49691e415a30ef2f6e1d22eb6b6f970ec0d82c2afe6d24d231d2680b9ac2354db9d45f5ee2270a58f14

9 lines
279 B
Plaintext

function _instanceof(left, right) {
"@swc/helpers - instanceof";
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
} else return left instanceof right;
}
export { _instanceof as _ };