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
It is minified into !0&&console.log("true"),!1&&console.log("false") while it would be better to pre-evaluate the expression and just minify it into console.log("true") (of course only static boolean values).
Thanks!
The text was updated successfully, but these errors were encountered:
Example of code which is not optimized:
It is minified into
!0&&console.log("true"),!1&&console.log("false")
while it would be better to pre-evaluate the expression and just minify it intoconsole.log("true")
(of course only static boolean values).Thanks!
The text was updated successfully, but these errors were encountered: