Skip to content

Commit 68d5447

Browse files
committed
Indentation
1 parent 6a322e4 commit 68d5447

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

functions/url/urlencode.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ function urlencode(str) {
3333
.replace(/!/g, '%21')
3434
.replace(/'/g, '%27')
3535
.replace(/\(/g, '%28')
36-
.
37-
replace(/\)/g, '%29')
36+
.replace(/\)/g, '%29')
3837
.replace(/\*/g, '%2A')
3938
.replace(/%20/g, '+');
40-
}
39+
}

0 commit comments

Comments
 (0)