| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

EasyPack

Page history last edited by PBworks 17 years, 8 months ago


 

EasyPack- pushbutton validation and compression

 

EasyPack logo

 

So, what is EasyPack?

 

EasyPack enables syntax checking, validation, compression and obsfucation of JavaScript files with a single click.

 

You can download the lastest version and read more about in in this codeproject article.

 

Known issues

 

  • Be careful about String instances that begin with an underscore ( _ )

 

var myString = "_thisisastring";

 

becomes somehting like

 

var myString = "_01";

 

after compression, which definitely you don't want.

 

To handle this situation split _ and concatanete with the rest of the String:

 

var myString = "_" + "thisisastring";

 

The example above will be compressed properly without problem.

Comments (0)

You don't have permission to comment on this page.