webpack-glsl-minify icon indicating copy to clipboard operation
webpack-glsl-minify copied to clipboard

Fixed a case where ".0" is being reduced to "."

Open DVLP opened this issue 2 years ago • 0 comments

There's a rule which helps to reduce floats written as "5.0" to "5.", but if someone is already using this notation and has i.e. ".0" in the code it will be reduced to ".". This PR addresses this case so there must be a number before the dot to omit the following zero.

DVLP avatar Dec 12 '23 02:12 DVLP