JavaScript optimiser is a system that strips white space and comments from Javascript pages. This condenses JavaScript pages down to the bare minimum allowing them to run more efficiently or to save load times when used in JavaScript files.
Why do I need to strip JavaScript?
In some cases, the size of JavaScript can be made up of up to 50% wasted space, this is in the form of useless white space and informational comments. So stripping JavaScript will reduce the page size, which in turn reduces the transfer rates for your site.
Web browsers will also take less time to view the page because the code is smaller. This in turn will stop clients leaving your site due to slow transfers of pages.
Benefits
* Simple to use.
* Makes source code more secure by removing comments.
* Helps with sites that have smaller or capped transfer rates.