Manuel Bustillo 5d39d49e5c
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 36s
Add copyright notice / copyright_notice (pull_request) Successful in 54s
Playwright Tests / test (pull_request) Successful in 2m15s
Remove unused utils functions
2024-11-17 22:16:00 +01:00

9 lines
210 B
TypeScript

/* Copyright (C) 2024 Manuel Bustillo*/
export const getCsrfToken = () => {
return document.cookie
.split("; ")
.find((row) => row.startsWith("csrf-token"))
?.split("=")[1] || 'unknown';
}