Add qa
This commit is contained in:
parent
645f9c8f23
commit
719f661556
1 changed files with 2 additions and 0 deletions
|
@ -353,6 +353,8 @@ function convertToNumber(string) {
|
||||||
return Number(string.replace(/[^0-9\.]+/g, '')) * 1000000000;
|
return Number(string.replace(/[^0-9\.]+/g, '')) * 1000000000;
|
||||||
} else if(string.indexOf('T') > -1) {
|
} else if(string.indexOf('T') > -1) {
|
||||||
return Number(string.replace(/[^0-9\.]+/g, '')) * 1000000000000;
|
return Number(string.replace(/[^0-9\.]+/g, '')) * 1000000000000;
|
||||||
|
} else if(string.indexOf('Qa') > -1) {
|
||||||
|
return Number(string.replace(/[^0-9\.]+/g, '')) * 1000000000000000;
|
||||||
} else {
|
} else {
|
||||||
return Number(string.replace(/[^0-9\.]+/g, ''));
|
return Number(string.replace(/[^0-9\.]+/g, ''));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue