Slimmer 0.1.20
20 Apr 2006
www.issuetrackerproduct.c...wnload/slimmer-0.1.20.tgz
Forgot to release the latest changes of slimmer so that we're now skipping from the 0.1.17 directly to this 0.1.20
The 0.1.20 version introduces an experimental (unittesting-passing) feature which is triggered if you pass hardcore=True to slimmer(). Currently the only hardcore thing it does is to optimize all the variable names passed as arguments within a JavaScript function to something much shorter.
So if you use the hardcore option, code like this:
function foo(documentnode, nodevalue) {
return documentnode + nodevalue;
}
the result becomes this:
function foo(_0,_1){return _0 + _1;}