10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 11:17:42 +02:00

fix bug in floatUtils

This commit is contained in:
Mickaël Véril 2020-02-01 17:24:58 +01:00
parent 554d3ee84c
commit 02dfbe9a9e

View File

@ -9,7 +9,7 @@ class stringFloat{
return this.Value;
}
toString(){
if (isNaN(checkFloat(this.Value))) {
if (checkFloat(this.string)) {
return this.Value
} else {
return this.string