JavaScript code compression
Posted
by Yashwant Chavan
on Stack Overflow
See other posts from Stack Overflow
or by Yashwant Chavan
Published on 2010-01-29T05:09:34Z
Indexed on
2010/03/26
2:43 UTC
Read the original article
Hit count: 231
JavaScript
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.
© Stack Overflow or respective owner