mathiasbynens / luamin

A Lua minifier written in JavaScript
https://mths.be/luamin
MIT License
216 stars 55 forks source link

incorrect minification with parentheses #53

Open rajeevku02 opened 6 years ago

rajeevku02 commented 6 years ago

Input: x = (3 + 4) // 7 output: x=3+4//7 expected: x=(3+4)//7

martin-braun commented 6 years ago

Input: x = (3 + 4) / 7 output: x=(3+4)/7

jrtitus commented 6 years ago

Probably a duplicate of #50