* Clone this response * * @return Response
()
| 6747 | * @return Response |
| 6748 | */ |
| 6749 | clone() { |
| 6750 | return new _Response(clone(this), { |
| 6751 | url: this.url, |
| 6752 | status: this.status, |
| 6753 | statusText: this.statusText, |
| 6754 | headers: this.headers, |
| 6755 | ok: this.ok, |
| 6756 | redirected: this.redirected |
| 6757 | }); |
| 6758 | } |
| 6759 | }; |
| 6760 | Body.mixIn(Response6.prototype); |
| 6761 | Object.defineProperties(Response6.prototype, { |
nothing calls this directly
no test coverage detected