docs/components/lib/get-csrf.ts

6 строки
170 B
TypeScript

export default function getCsrf() {
const csrfEl = document.querySelector('meta[name="csrf-token"]')
if (!csrfEl) return ''
return csrfEl.getAttribute('content')
}