aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send.utils.js
diff options
context:
space:
mode:
authortrejgun <trejgun@gmail.com>2018-07-02 09:36:57 +0800
committertrejgun <trejgun@gmail.com>2018-07-02 09:36:57 +0800
commit491f2d03cfd790e4246a9fa638a2eecb07a6488a (patch)
tree75b731e38638833681591dcee03eec31d684566b /ui/app/components/send_/send.utils.js
parent4598554fea7b9435e5cbecc4735c479ffbadf37e (diff)
downloadtangerine-wallet-browser-491f2d03cfd790e4246a9fa638a2eecb07a6488a.tar.gz
tangerine-wallet-browser-491f2d03cfd790e4246a9fa638a2eecb07a6488a.tar.zst
tangerine-wallet-browser-491f2d03cfd790e4246a9fa638a2eecb07a6488a.zip
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.js5
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 dfd459731..313465fed 100644
--- a/ui/app/components/send_/send.utils.js
+++ b/ui/app/components/send_/send.utils.js
@@ -32,6 +32,7 @@ module.exports = {
getToAddressForGasUpdate,
isBalanceSufficient,
isTokenBalanceSufficient,
+ removeLeadingZeroes,
}
function calcGasTotal (gasLimit, gasPrice) {
@@ -273,3 +274,7 @@ function estimateGasPriceFromRecentBlocks (recentBlocks) {
function getToAddressForGasUpdate (...addresses) {
return [...addresses, ''].find(str => str !== undefined && str !== null).toLowerCase()
}
+
+function removeLeadingZeroes (str) {
+ return str.replace(/^0*(?=\d)/, '')
+}