(e3)
| 74900 | } |
| 74901 | |
| 74902 | // node_modules/@azure/core-util/dist/esm/object.js |
| 74903 | function isObject2(input) { |
| 74904 | return typeof input === "object" && input !== null && !Array.isArray(input) && !(input instanceof RegExp) && !(input instanceof Date); |
| 74905 | } |
| 74906 | |
| 74907 | // node_modules/@azure/core-util/dist/esm/error.js |
| 74908 | function isError(e3) { |
| 74909 | if (isObject2(e3)) { |
| 74910 | const hasName = typeof e3.name === "string"; |
| 74911 | const hasMessage = typeof e3.message === "string"; |
| 74912 | return hasName && hasMessage; |
no test coverage detected