(init)
| 12861 | headers: this.headers, |
| 12862 | body: this.body, |
| 12863 | bodyUsed: this.bodyUsed, |
| 12864 | ok: this.ok, |
| 12865 | redirected: this.redirected, |
| 12866 | type: this.type, |
| 12867 | url: this.url |
| 12868 | }; |
| 12869 | return `Response ${nodeUtil.formatWithOptions(options, properties)}`; |
| 12870 | } |
| 12871 | }; |
| 12872 | mixinBody(Response); |
| 12873 | Object.defineProperties(Response.prototype, { |
| 12874 | type: kEnumerableProperty, |
| 12875 | url: kEnumerableProperty, |
| 12876 | status: kEnumerableProperty, |
| 12877 | ok: kEnumerableProperty, |
| 12878 | redirected: kEnumerableProperty, |
| 12879 | statusText: kEnumerableProperty, |
| 12880 | headers: kEnumerableProperty, |
| 12881 | clone: kEnumerableProperty, |
no test coverage detected