(object, proto)
| 873 | } |
| 874 | |
| 875 | function isInstanceof(object, proto) { |
| 876 | try { |
| 877 | return object instanceof proto; |
| 878 | } catch { |
| 879 | return false; |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | // Special-case for some builtin prototypes in case their `constructor` property has been tampered. |
| 884 | const wellKnownPrototypes = new SafeMap() |
no outgoing calls
no test coverage detected
searching dependent graphs…