We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff5e173 commit bafff92Copy full SHA for bafff92
src/js.cookie.js
@@ -72,9 +72,9 @@
72
return (document.cookie = [
73
key, '=', value,
74
attributes.expires ? '; expires=' + attributes.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
75
- attributes.path ? '; path=' + attributes.path : '',
76
- attributes.domain ? '; domain=' + attributes.domain : '',
77
- attributes.secure ? '; secure' : ''
+ attributes.path ? '; path=' + attributes.path : '',
+ attributes.domain ? '; domain=' + attributes.domain : '',
+ attributes.secure ? '; secure' : ''
78
].join(''));
79
}
80
0 commit comments