Remove dangling semi-colon

remove dangling semi-colon.
This commit is contained in:
Chris J. Lee 2016-05-10 11:01:01 -05:00
parent e588305f24
commit 91a98dee8f
1 changed files with 1 additions and 2 deletions

View File

@ -2,8 +2,7 @@
"use strict";
function btoa(str) {
var buffer
;
var buffer;
if (str instanceof Buffer) {
buffer = str;