зеркало из https://github.com/github/docs.git
7 строки
176 B
JavaScript
7 строки
176 B
JavaScript
|
export default function getCsrf () {
|
||
|
const csrfEl = document
|
||
|
.querySelector('meta[name="csrf-token"]')
|
||
|
if (!csrfEl) return ''
|
||
|
return csrfEl.getAttribute('content')
|
||
|
}
|