blob: 9734eaec15111a46e09657e57d727d9e91e0b294 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* set a cookie
* the version from w3schools expects these to expire
* @param {String} cname The name of the cookie to return
* @param {String} value The value of that cookie option
*/
const setCookie = (cname, value) => {
document.cookie = `${cname}=${value}`;
};
export default setCookie;
|