blob: d3699a2493b7414cb22179eb0e2eef64f24d137e (
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
|