aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/currency-input.js
diff options
context:
space:
mode:
authorThomas Huang <thomas.b.huang@gmail.com>2017-11-10 06:23:10 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-11 06:07:27 +0800
commit5120cfdff3047e4bf88cec544895cc713d063cdd (patch)
tree883e918b64c2b7ace6b968dd5499794c404f5c40 /ui/app/components/currency-input.js
parent62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8 (diff)
downloadtangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar.gz
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar.bz2
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar.lz
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar.xz
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.tar.zst
tangerine-wallet-browser-5120cfdff3047e4bf88cec544895cc713d063cdd.zip
Linting
Diffstat (limited to 'ui/app/components/currency-input.js')
-rw-r--r--ui/app/components/currency-input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/currency-input.js b/ui/app/components/currency-input.js
index 5e534d87b..f192ee531 100644
--- a/ui/app/components/currency-input.js
+++ b/ui/app/components/currency-input.js
@@ -40,7 +40,7 @@ function sanitizeDecimal (val) {
// sanitizeValue('.200') -> '0.200'
// sanitizeValue('a.b.1.c,89.123') -> '0.189123'
function sanitizeValue (value) {
- let [,integer, point, decimal] = (/([^.]*)([.]?)([^.]*)/).exec(value)
+ let [integer, point, decimal] = (/([^.]*)([.]?)([^.]*)/).exec(value)
integer = sanitizeInteger(integer) || '0'
decimal = sanitizeDecimal(decimal)