Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
function y() { var x = "my_very_long_string"; fct(x); fct(x); fct(x); fct(x); fct(x); }; /* ... will be minified as: */ function y(){fct("my_very_long_string");fct("my_very_long_string");fct("my_very_long_string");fct("my_very_long_string");fct("my_very_long_string")}; /* Why not like this? */ function y(){var x="my_very_long_string";fct(x);fct(x);fct(x);fct(x);fct(x)}};
This paste will be private.
From the Design Piracy series on my blog: