whitespace fix

This commit is contained in:
AJ ONeal 2015-10-22 15:17:34 -07:00
parent e684b80b11
commit f527c6b28c
1 changed files with 1 additions and 1 deletions

View File

@ -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;