"Base62 encode" error:
1. I checked my javascript code using various validators and found all "missing ;"
2. All javascripts work just fine when loaded uncompressed, but once I compress it here using "Base62 encode", I get following FireFox error:
"missing ; before statement"
So I took a look and already after few first characters in compressed code I found following:
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};
As far as my limited knowledge goes, I would say that it should look like this:
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36));};
Where focus is on the end of this code:
)}; versus );};
These ; missing in Base62 encoded code are more.
Is this correct?.