mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
export function cookieValue(
|
|
cookieName: string,
|
|
documentCookie: string
|
|
): string | undefined {
|
|
return documentCookie
|
|
.split('; ')
|
|
.find((row) => row.startsWith(`${cookieName}=`))
|
|
?.split('=')[1]
|
|
}
|