Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In our application, we invoke YUICompressor to minify our javascript. Under some conditions we are having trouble identifying, it incorrectly unescapes backslash-escaped characters, so for example

var newline="\n"

becomes

var newline="
"

has anyone seen this before, and do you know why it happens and how to make it stop?

Oh yes - this in the context of a Tapestry application, which may be related, since we can't reproduce the problem on the command line (using java -jar yuicompressor.jar...)

share|improve this question

2 Answers

up vote 0 down vote accepted

We now think this may be fixed by upgrading to a newer YUICompressor - version 2.6 I think

share|improve this answer

Did you try to use the inverted comma instead of the double quote?

var newline = '\n';
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.