From f527c6b28cfeb75371f061514e671c80d688abd0 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 22 Oct 2015 15:17:34 -0700 Subject: [PATCH] whitespace fix --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index abc9099..be3001c 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,7 @@ function utf8ToBinaryString(str) { // replaces any uri escape sequence, such as %0A, // with binary escape, such as 0x0A var binstr = escstr.replace(/%([0-9A-F]{2})/g, function(match, p1) { - return String.fromCharCode(parseInt(p1,16)); + return String.fromCharCode(parseInt(p1, 16)); }); return binstr;