Skip to content

Commit

Permalink
Remove redundant var declaration
Browse files Browse the repository at this point in the history
Closes #22.
  • Loading branch information
darrachequesne authored and mathiasbynens committed Oct 18, 2016
1 parent 6687e92 commit 56fcc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utf8.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@

// 2-byte sequence
if ((byte1 & 0xE0) == 0xC0) {
var byte2 = readContinuationByte();
byte2 = readContinuationByte();
codePoint = ((byte1 & 0x1F) << 6) | byte2;
if (codePoint >= 0x80) {
return codePoint;
Expand Down

0 comments on commit 56fcc95

Please sign in to comment.