(status: StatusCode, init?: ResponseInit)
| 102 | } |
| 103 | |
| 104 | function createStandardResponse(status: StatusCode, init?: ResponseInit) { |
| 105 | const statusText = STATUS_TEXT[status]; |
| 106 | return new Response(statusText, { status, statusText, ...init }); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * parse range header. |
no outgoing calls
no test coverage detected