Skip to content

Commit f9f3f0e

Browse files
committed
Group related code together
1 parent 5083c64 commit f9f3f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js.cookie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
key = key.replace(/[\(\)]/g, escape);
7979

8080
var stringifiedAttributes = '';
81-
8281
for (var attributeName in attributes) {
8382
if (!attributes[attributeName]) {
8483
continue;
@@ -97,6 +96,7 @@
9796
// ...
9897
stringifiedAttributes += '=' + attributes[attributeName].split(';')[0];
9998
}
99+
100100
return (document.cookie = key + '=' + value + stringifiedAttributes);
101101
}
102102

0 commit comments

Comments
 (0)