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 old implementation was broken because string.replace returns a new string
rather than modifying the string in-place (obviously, because strings are
immutable), and was further broken because the localized thousands separator can
be "." in some locales. This new implementation breaks the value into separate integer and decimal parts to avoid such confusion.
0 commit comments