()
| 12682 | var Response = class _Response { |
| 12683 | // Creates network error Response. |
| 12684 | static error() { |
| 12685 | const responseObject = fromInnerResponse(makeNetworkError(), "immutable"); |
| 12686 | return responseObject; |
| 12687 | } |
| 12688 | // https://fetch.spec.whatwg.org/#dom-response-json |
| 12689 | static json(data, init = {}) { |
| 12690 | webidl.argumentLengthCheck(arguments, 1, "Response.json"); |
no test coverage detected