(reason)
| 58985 | timingInfo: null, |
| 58986 | cacheState: "", |
| 58987 | statusText: "", |
| 58988 | ...init, |
| 58989 | headersList: init.headersList ? new HeadersList(init.headersList) : new HeadersList(), |
| 58990 | urlList: init.urlList ? [...init.urlList] : [] |
| 58991 | }; |
| 58992 | } |
| 58993 | function makeNetworkError(reason) { |
| 58994 | const isError2 = isErrorLike(reason); |
| 58995 | return makeResponse({ |
| 58996 | type: "error", |
| 58997 | status: 0, |
| 58998 | error: isError2 ? reason : new Error(reason ? String(reason) : reason), |
no test coverage detected
searching dependent graphs…