removed the "squeeze" method (it's now effectively "transform")

This commit is contained in:
Mihai Bazon
2012-09-26 19:52:32 +03:00
parent 15d58f5917
commit 13278c6649
3 changed files with 8 additions and 14 deletions

View File

@@ -132,7 +132,7 @@ if (SCOPE_IS_NEEDED) {
if (ARGS.c !== true) {
time_it("squeeze", function(){
var compressor = UglifyJS.Compressor(COMPRESSOR_OPTIONS);
TOPLEVEL = TOPLEVEL.squeeze(compressor);
TOPLEVEL = TOPLEVEL.transform(compressor);
});
}