Function
empty
(options?: ServerResponse.Options.WithContent | undefined)
Source from the content-addressed store, hash-verified
| 88 | |
| 89 | /** @internal */ |
| 90 | export const empty = (options?: ServerResponse.Options.WithContent | undefined): ServerResponse.HttpServerResponse => |
| 91 | new ServerResponseImpl( |
| 92 | options?.status ?? 204, |
| 93 | options?.statusText, |
| 94 | options?.headers ? Headers.fromInput(options.headers) : Headers.empty, |
| 95 | options?.cookies ?? Cookies.empty, |
| 96 | internalBody.empty |
| 97 | ) |
| 98 | |
| 99 | /** @internal */ |
| 100 | export const redirect = ( |
Tested by
no test coverage detected