ai-tube / src /app /api /v1 /auth /parseToken.ts
jbilcke-hf's picture
jbilcke-hf HF staff
eh, not bad for a side project
8919651
raw
history blame
181 Bytes
export function parseToken(input?: any): string {
try {
return (decodeURIComponent(`${input || ""}`).split("Bearer").pop() || "").trim()
} catch (err) {
return ""
}
}