crosswords/js_client/cookie.js

24 lines
708 B
JavaScript
Raw Permalink Normal View History

2021-06-17 16:02:50 +02:00
export function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toUTCString();
2021-06-25 09:48:06 +02:00
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/; SameSite=Strict";
2021-06-17 16:02:50 +02:00
}
export function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}