(e)
| 97 | } |
| 98 | |
| 99 | function isError(e) { |
| 100 | // An error could be an instance of Error while not being a native error |
| 101 | // or could be from a different realm and not be instance of Error but still |
| 102 | // be a native error. |
| 103 | return isNativeError(e) || FunctionPrototypeSymbolHasInstance(Error, e); |
| 104 | } |
| 105 | |
| 106 | // Keep a list of deprecation codes that have been warned on so we only warn on |
| 107 | // each one once. |
no outgoing calls
no test coverage detected
searching dependent graphs…