16 lines
399 B
TypeScript
Raw Normal View History

2022-02-21 02:50:03 +00:00
export const getCsrfToken = (): string | null => {
2022-07-13 01:45:36 +00:00
const meta = document.head.querySelector('meta[name="_csrf"]');
if (!meta) {
return '';
2022-07-13 01:45:36 +00:00
}
return meta.getAttribute('content');
2022-02-21 02:50:03 +00:00
};
export const getCsrfTokenParameter = (): string => {
2022-07-13 01:45:36 +00:00
const meta = document.head.querySelector('meta[name="_csrf_parameter"]');
if (!meta) {
return '';
2022-07-13 01:45:36 +00:00
}
return meta.getAttribute('content');
};