1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Quick readability enhancement.

This commit is contained in:
mike12345567 2024-02-15 16:28:59 +00:00
parent 66fed60e44
commit 32815d8d9b

View file

@ -64,12 +64,7 @@ export function createRequest(request: Request): RequestInit {
if (value === undefined) { if (value === undefined) {
continue continue
} }
headers[header] = Array.isArray(value) ? value[0] : value
if (Array.isArray(value)) {
headers[header] = value[0]
} else {
headers[header] = value
}
} }
// be specific about auth headers // be specific about auth headers
const cookie = ctx.headers[constants.Header.COOKIE], const cookie = ctx.headers[constants.Header.COOKIE],
@ -77,11 +72,9 @@ export function createRequest(request: Request): RequestInit {
if (cookie) { if (cookie) {
headers[constants.Header.COOKIE] = cookie headers[constants.Header.COOKIE] = cookie
} else if (apiKey) { } else if (apiKey) {
if (Array.isArray(apiKey)) { headers[constants.Header.API_KEY] = Array.isArray(apiKey)
headers[constants.Header.API_KEY] = apiKey[0] ? apiKey[0]
} else { : apiKey
headers[constants.Header.API_KEY] = apiKey
}
} }
} }