From: John Resig Date: Sun, 25 Feb 2007 07:11:59 +0000 (+0000) Subject: A small fix that makes the Packer compressor about 10% more efficient. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=21ca78bcd0c800ad8b54dcd7c73418e219f0ce49 A small fix that makes the Packer compressor about 10% more efficient. --- diff --git a/build/js/pack.js b/build/js/pack.js index 56bfdd1..2c13dfb 100644 --- a/build/js/pack.js +++ b/build/js/pack.js @@ -110,7 +110,7 @@ function pack(_script, _encoding, _fastDecode, _specialChars) { var $parser = new ParseMaster; var $encode = _getEncoder(_encoding); // for high-ascii, don't encode single character low-ascii - var $regexp = (_encoding > 62) ? /\w\w+/ : /\w+/; + var $regexp = (_encoding > 62) ? /\w\w+/ : /(\(\)|\){|var |return |&&|==|typeof |function\(?|if\(|for\(|while\(|[a-zA-Z0-9]+|\)}|\[\d\])/; // build the word list $keywords = _analyze($script, _globalize($regexp), $encode); var $encoded = $keywords.$encoded;