JavaScript code compression
javascript
Solution
You can use a javascript minifier.
YUI Compressor
JS Minifier
jsCompress
Problem
Is there is way to compress JavaScript code? e.g. ``` function test(){ // some code here } ``` after compression it should be ``` function test(){//some code here} ``` Also, I need vise versa at the time of editing the code.