348022431ba4d52418e4e5f36c85a9da37796e66
[vchess.git] / client / src / utils / cookie.js
1 // Source: https://www.quirksmode.org/js/cookies.html
2 export function setCookie(name, value) {
3 const date = new Date();
4 date.setTime(date.getTime() + 183 * 24 * 60 * 60 * 1000); //6 months
5 const expires = "; expires=" + date.toGMTString();
6 document.cookie = name + "=" + value + expires + "; path=/";
7 }
8
9 export function getCookie(name, defaut) {
10 const nameEQ = name + "=";
11 const ca = document.cookie.split(";");
12 for (var i = 0; i < ca.length; i++) {
13 var c = ca[i];
14 while (c.charAt(0) == " ") c = c.substring(1, c.length);
15 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
16 }
17 return defaut; //cookie not found
18 }