(response)
| 58956 | configurable: true |
| 58957 | } |
| 58958 | }); |
| 58959 | Object.defineProperties(Response6, { |
| 58960 | json: kEnumerableProperty, |
| 58961 | redirect: kEnumerableProperty, |
| 58962 | error: kEnumerableProperty |
| 58963 | }); |
| 58964 | function cloneResponse(response) { |
| 58965 | if (response.internalResponse) { |
| 58966 | return filterResponse( |
| 58967 | cloneResponse(response.internalResponse), |
| 58968 | response.type |
| 58969 | ); |
| 58970 | } |
| 58971 | const newResponse = makeResponse({ ...response, body: null }); |
| 58972 | if (response.body != null) { |
| 58973 | newResponse.body = cloneBody(response.body); |
no test coverage detected
searching dependent graphs…