Skip to content

Commit bafff92

Browse files
Remove unnecessary code alignment
Closes js-cookiegh-214.
1 parent ff5e173 commit bafff92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/js.cookie.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
return (document.cookie = [
7373
key, '=', value,
7474
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' : ''
75+
attributes.path ? '; path=' + attributes.path : '',
76+
attributes.domain ? '; domain=' + attributes.domain : '',
77+
attributes.secure ? '; secure' : ''
7878
].join(''));
7979
}
8080

0 commit comments

Comments
 (0)