I think I found a bug in the DynAPI compressor (also exists in the Brain
Jar one).
I have something like this to change spaces to non-breaking spaces.
mystring.replace(/ /, " ");
But, when I compress it, the space in my regular expression gets
compressed and I wind up with this:
mystring.replace(//, " ");
Looks like it's removing the spaces around the / character (x2f), and
maybe it shouldn't be.
What do you think?
Jesse
|