Files
med-notes/.pnpm-store/v10/files/ba/ac38696ddc079fe46067e4ea749108415e76ab09ebf833115a0c08405ebf11ddbaee1bc93c26fb07a11d0c8cc807101f8ffee5c27923103a74f257f6df034a
2025-05-09 05:30:08 +02:00

16 lines
369 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _instanceof;
function _instanceof(left, right) {
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
return !!right[Symbol.hasInstance](left);
} else {
return left instanceof right;
}
}
//# sourceMappingURL=instanceof.js.map