Skip to content

Commit f54b8bf

Browse files
author
Nicholas C. Zakas
committed
Removed unused code
1 parent 68aba18 commit f54b8bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

encodings/base64/base64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function base64Decode(text){
101101

102102
switch(digitNum){
103103

104-
//case 0: do nothing, not enough info to work with
104+
//case 0: first digit - do nothing, not enough info to work with
105105

106106
case 1: //second digit
107107
result.push(String.fromCharCode(prev << 2 | cur >> 4));

0 commit comments

Comments
 (0)