I know about a similar question but it is a tiny bit off from what I am asking here, so please don\'t flag it as a duplicate.
When you
To cite the Closure Compiler FAQ:
The Closure Compiler intentionally adds line breaks every 500 characters or so. Firewalls and proxies sometimes corrupt or ignore large JavaScript files with very long lines. Adding line breaks every 500 characters prevents this problem. Removing the line breaks has no effect on a script's semantics. The impact on code size is small, and the Compiler optimizes line break placement so that the code size penalty is even smaller when files are gzipped.
This is relevant to any minification programs in general.