So I saw something on the net that I want to understand how it's done. It's a page with hundred of functions like this one:
ba: function(z) {
var l = this.cj
, n = z.ff;
l[n] || (l[n] = []),
l[n].push(z)
},
Normally I would just run unminify but in this case it's not enough. If there's no existing solution, how would I proceed to programmatically deobfuscate the code? It's safe to assume that if a js file can be understood by the browser it can be reversed to be understood by human.