(&self)
| 317 | /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Response/clone | Fetch API `Response.clone()`} |
| 318 | #[napi(js_name = "clone", ts_return_type = "Response")] |
| 319 | pub fn clone_response(&self) -> Result<()> { |
| 320 | Err(napi::Error::new( |
| 321 | napi::Status::GenericFailure, |
| 322 | "clone() is implemented in the JavaScript wrapper".to_string(), |
| 323 | )) |
| 324 | } |
| 325 | |
| 326 | /// Aborts the response. |
| 327 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected