[ci] format

This commit is contained in:
matthewp 2022-04-07 19:18:48 +00:00 committed by GitHub Actions
parent 4b0f27d9ff
commit 7ada6280f2

View file

@ -54,7 +54,7 @@ async function writeWebResponse(res: http.ServerResponse, webResponse: Response)
// This is needed because Set-Cookie *must* be called for each cookie, and can't be // This is needed because Set-Cookie *must* be called for each cookie, and can't be
// concatenated together. // concatenated together.
type HeadersWithRaw = Headers & { type HeadersWithRaw = Headers & {
raw: () => Record<string, string[]> raw: () => Record<string, string[]>;
}; };
for (const [key, value] of Object.entries((headers as HeadersWithRaw).raw())) { for (const [key, value] of Object.entries((headers as HeadersWithRaw).raw())) {