ajaxmin doesn't remove empty line, doesn't remove comments between two 'important' comment
e.g. have below in js file:
// test1.js
/*! test1.js this is a test
/
/// I am a single line comment
/ I am multi
- line
- comment /
/* I am multi
- line
- comment /
/! I am multi
- line
- comment /
var js_test = "test";
It is minified to:
/! test1.js this is a test /
/// I am a single line comment
/ I am multi
- line
- comment /
/* I am multi
- line
- comment /
/! I am multi
- line
- comment */
var js_test="test";