You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The optimization in #9903 has an edge case where number = number * 1 is converted into number = +number as caught here instead of the shorter number *= 1.
The optimization in #9903 has an edge case where
number = number * 1
is converted intonumber = +number
as caught here instead of the shorternumber *= 1
.Playground
The text was updated successfully, but these errors were encountered: