I was using JS minifiers a lot for my production code, and only recently I started to wonder how do they exactly work.
I can understand the ideas for using minifiers:
- decrease the size js
- obfuscate js
- merge several js files into one
I also can understand on really low level how JS file is minified:
- all the comments are deleted
- some spaces/new lines are deleted
- variables are substituted with shorter variables
But I know that there is much more to be done by a normal JS minifier.
Can anyone explain on the example how does it work?
each()? ;) – Frédéric Hamidi Nov 19 '12 at 22:15