Various stylistic changes
This commit is contained in:
parent
f580516c06
commit
ed137a3b9d
4 changed files with 35 additions and 20 deletions
src
|
@ -53,8 +53,8 @@ exports.base64ToBytes = function(base64) {
|
|||
// Remove non-base-64 characters
|
||||
base64 = base64.replace(/[^A-Z0-9+\/]/ig, '');
|
||||
|
||||
var bytes = []
|
||||
, imod4 = 0
|
||||
var bytes = [];
|
||||
var imod4 = 0;
|
||||
|
||||
for (var i = 0; i < base64.length; imod4 = ++i % 4) {
|
||||
if (!imod4) continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue