mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-21 19:51:47 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
export const getTokenFromCookies = (cookieHeader: string | null) => {
|
|
if (!cookieHeader) return null;
|
|
|
|
return cookieHeader
|
|
.split("; ")
|
|
.find((c) => c.startsWith("access_token="))
|
|
?.split("=")[1];
|
|
}; |