Sha256: 88b4134a25521d5139809b9b1450c69a3fb18fe846f714c235ec36d3105dadba
Contents?: true
Size: 232 Bytes
Versions: 85
Compression:
Stored size: 232 Bytes
Contents
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; } }
Version data entries
85 entries across 84 versions & 14 rubygems