File "getCsrfToken.js"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/js/util/getCsrfToken.js
File size: 217 bytes
MIME-type: text/plain
Charset: utf-8
export function getCsrfToken() {
const tokenTag = document.head.querySelector('meta[name="csrf-token"]')
if (tokenTag) {
return tokenTag.content
}
return window.livewire_token ?? undefined
}