This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/@babel/runtime-corejs2/helpers/esm/instanceof.js

9 lines
348 B
JavaScript

import _Symbol$hasInstance from "../../core-js/symbol/has-instance";
import _Symbol from "../../core-js/symbol";
export default function _instanceof(left, right) {
if (right != null && typeof _Symbol !== "undefined" && right[_Symbol$hasInstance]) {
return !!right[_Symbol$hasInstance](left);
} else {
return left instanceof right;
}
}