Files
omnivore/packages/web/lib/cookieHelpers.ts
2022-02-11 09:24:33 -08:00

10 lines
216 B
TypeScript

export function cookieValue(
cookieName: string,
documentCookie: string
): string | undefined {
return documentCookie
.split('; ')
.find((row) => row.startsWith(`${cookieName}=`))
?.split('=')[1]
}