()
| 13441 | let initBody = null; |
| 13442 | if (init.body != null) { |
| 13443 | const [extractedBody, contentType] = extractBody( |
| 13444 | init.body, |
| 13445 | request.keepalive |
| 13446 | ); |
| 13447 | initBody = extractedBody; |
| 13448 | if (contentType && !getHeadersList(this[kHeaders]).contains("content-type", true)) { |
| 13449 | this[kHeaders].append("content-type", contentType); |
nothing calls this directly
no test coverage detected