Merge pull request #111 from cryptoreddit/patch-1

In Base64 encoding, if result ends in \n, remove it. (Fixes #79, #105)
This commit is contained in:
Sean Colyer 2013-10-09 16:06:42 -07:00
commit 81fdb00418

View File

@ -54,7 +54,8 @@ function s2r(t) {
r += "\n";
r += '=';
}
if (r.charAt(r.length-1)==="\n")
r=r.slice(0,-1);
return r;
}