mirror of
https://github.com/matthiasmullie/minify.git
synced 2025-02-22 11:13:03 +01:00
1: some were not stripped agressively enough. E.g.: return !0 -> return!0 2: some were stripped too aggressive. E.g.: func() {1+2} Should not be joined on 1 line, since func() could be a function call and {1+2} an unrelated piece of code Fixes issue #130