mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-08-09 20:53:47 +02:00
Format all files with Prettier
This commit is contained in:
@@ -43,8 +43,10 @@ function getCookie(name) {
|
||||
for (let i = 0; i < cookies.length; i++) {
|
||||
const cookie = cookies[i].trim();
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) === (`${name}=`)) {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
if (cookie.substring(0, name.length + 1) === `${name}=`) {
|
||||
cookieValue = decodeURIComponent(
|
||||
cookie.substring(name.length + 1)
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user