📄 _instanceof.js
/home/palash/git/site/node_modules/@swc/helpers/esm/_instanceof.js
Language: js • Lines: 8
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 _ };