diff options
author | Dan J Miller <danjm.com@gmail.com> | 2018-07-04 01:31:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-04 01:31:48 +0800 |
commit | 4bdd59b055730ee05c82546cd2eba55d8ac4506c (patch) | |
tree | f09119f5088e7a8f845457901528622bdea59c09 /ui/app/components/send_/send.utils.js | |
parent | 1f0cf11af1c94e750bbc4c5238c3ee028350a6c6 (diff) | |
parent | 491f2d03cfd790e4246a9fa638a2eecb07a6488a (diff) | |
download | dexon-wallet-4bdd59b055730ee05c82546cd2eba55d8ac4506c.tar.gz dexon-wallet-4bdd59b055730ee05c82546cd2eba55d8ac4506c.tar.zst dexon-wallet-4bdd59b055730ee05c82546cd2eba55d8ac4506c.zip |
Merge pull request #4699 from TrejGun/removeLeadingZeroes
move removeLeadingZeroes to utils, add test
Diffstat (limited to 'ui/app/components/send_/send.utils.js')
-rw-r--r-- | ui/app/components/send_/send.utils.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/components/send_/send.utils.js b/ui/app/components/send_/send.utils.js index 872df1d2..34275248 100644 --- a/ui/app/components/send_/send.utils.js +++ b/ui/app/components/send_/send.utils.js @@ -33,6 +33,7 @@ module.exports = { getToAddressForGasUpdate, isBalanceSufficient, isTokenBalanceSufficient, + removeLeadingZeroes, } function calcGasTotal (gasLimit, gasPrice) { @@ -276,3 +277,7 @@ function estimateGasPriceFromRecentBlocks (recentBlocks) { function getToAddressForGasUpdate (...addresses) { return [...addresses, ''].find(str => str !== undefined && str !== null).toLowerCase() } + +function removeLeadingZeroes (str) { + return str.replace(/^0*(?=\d)/, '') +} |