We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When I'm trying to minify the code below:
{(A:=1,B:=2)}
The minifier adds parentheses around the assignment expression, resulting in an increase of 2 bytes per assignment expressions:
{((A:=1),(B:=2))}