mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Utils: removeTrailingZeros - handle .0* decimal part (i.e. 1.00000)
This commit is contained in:
parent
ea1fee2f5f
commit
841d0e01dc
1 changed files with 1 additions and 1 deletions
|
@ -113,5 +113,5 @@ function capitalize(s){
|
|||
}
|
||||
|
||||
function removeTrailingZeros(value) {
|
||||
return (value + '').replace(/(\.\d*[1-9])0+$/, '$1');
|
||||
return (value + '').replace(/\.?0*$/, '');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue