You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know it's a jsmin bug but as a workaround please change:
return /(url\s_(.?){3}/.test(m_style[background]);
to:
return new RegExp("(url\s(._?){3}").test(m_style[background]);
The text was updated successfully, but these errors were encountered:
Hey Gercek.. this is a bug in jsmin.py to be honest. It isn't successfully parsing a completely valid regular expression. Right now I'm not spotting the home of jsmin.py so as far as I can tell it's abandoned. If not, I'm happy to report it upstream.
But we can't fix bugs for a minifier that can't parse valid javascript. :/ It's just not sustainable.
I know it's a jsmin bug but as a workaround please change:
return /(url\s_(.?){3}/.test(m_style[background]);
to:
return new RegExp("(url\s(._?){3}").test(m_style[background]);
The text was updated successfully, but these errors were encountered: