bpms_site/.svn/pristine/d3/d3bd816b9545cd324e029e2e26c9c37904b8bc62.svn-base
2025-11-02 16:38:49 +03:30

7 lines
252 B
Plaintext

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