Open iamumairayub opened 5 years ago
I get following error after JS is minified
Uncaught ReferenceError: Invalid left-hand side expression in postfix operation
It happens if there is some statement like anything_here + ++aVariable then JSMin.php will convert it to anything_here+++aVariable
anything_here + ++aVariable
anything_here+++aVariable
It should convert to anything_here+(++aVariable) instead
anything_here+(++aVariable)
I get following error after JS is minified
It happens if there is some statement like
anything_here + ++aVariable
then JSMin.php will convert it toanything_here+++aVariable
It should convert to
anything_here+(++aVariable)
instead