UNPKG

248 BJavaScriptView Raw
1function _instanceof(left, right) {
2 if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
3 return !!right[Symbol.hasInstance](left);
4 } else {
5 return left instanceof right;
6 }
7}
8
9module.exports = _instanceof;
\No newline at end of file