Generate file attachment transactions for explicit Remarkup attachments on common...
[phabricator.git] / externals / JsShrink / readme.txt
blob8b59308c72cc4e9d01959269a1d9b138041bb292
1 JsShrink - Remove spaces and comments from JavaScript code
2 Available in PHP and JavaScript
3 Requires statements ending by semicolon, use JSHint or JSLint to verify.
5 http://vrana.github.com/JsShrink/
7 Usage PHP:
8 <?php
9 include "jsShrink.php";
10 echo jsShrink($code);
13 Usage JavaScript:
14 <script type="text/javascript" src="jsShrink.js"></script>
15 <script type="text/javascript">
16 textarea.value = jsShrink(code);
17 </script>
19 Note:
20 Google Closure Compiler is much more powerful and efficient tool.
21 JsShrink was created for those looking for PHP or JavaScript only solution.
22 Most other JS minifiers are not able to process valid JavaScript code:
23 http://php.vrana.cz/minifikace-javascriptu.php#srovnani