Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit 07e593d

Browse files
committed
Trying to improve readability a bit
1 parent 8df2e77 commit 07e593d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/jquery.cookie.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@
7676
// Read
7777

7878
var result = key ? undefined : {},
79-
80-
// To prevent the for loop in the first place assign an empty array
81-
// in case there are no cookies at all. Also prevents odd result when
82-
// calling $.cookie().
79+
// To prevent the for loop in the first place assign an empty array
80+
// in case there are no cookies at all. Also prevents odd result when
81+
// calling $.cookie().
8382
cookies = document.cookie ? document.cookie.split('; ') : [],
84-
i = 0, l = cookies.length;
83+
i = 0,
84+
l = cookies.length;
8585

8686
for (; i < l; i++) {
8787
var parts = cookies[i].split('='),

0 commit comments

Comments
 (0)