We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f3b43 commit ea69306Copy full SHA for ea69306
packages/open-next/src/http/util.ts
@@ -32,7 +32,7 @@ export const convertHeader = (header: http.OutgoingHttpHeader) => {
32
export function parseCookies(
33
cookies: string | string[] | null | undefined,
34
): string[] {
35
- if (cookies == null) {
+ if (!cookies) {
36
return [];
37
}
38
0 commit comments