From 91a98dee8f755b7bca5676cc2d214135ae02f008 Mon Sep 17 00:00:00 2001 From: "Chris J. Lee" Date: Tue, 10 May 2016 11:01:01 -0500 Subject: [PATCH] Remove dangling semi-colon remove dangling semi-colon. --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index ea124bf..b6026fb 100644 --- a/index.js +++ b/index.js @@ -2,8 +2,7 @@ "use strict"; function btoa(str) { - var buffer - ; + var buffer; if (str instanceof Buffer) { buffer = str;