Projekt

Obecné

Profil

Stáhnout (232 Bajtů) Statistiky
| Větev: | Revize:
1
export default function _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
}
(41-41/80)