Original:
1 .toFixed(1)
with “Auto Minify”:
1.toFixed(1)
Expected output:
1.0
“Auto Minify” output:
Uncaught SyntaxError: Invalid or unexpected token
“Auto Minify” will let the JS parser is ambiguous about the . operator.
“Auto Minify” should:
(1).toFixed(1)
or other.