mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import * as cookie from "cookie";
|
|
import type { Request } from "express";
|
|
|
|
export function hasJwtCookie(req: Request): boolean {
|
|
return Boolean(cookie.parse(req.headers.cookie ?? "").jwt?.length);
|
|
}
|