10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 14:11:51 +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; return this.Value;
} }
toString(){ toString(){
if (isNaN(checkFloat(this.Value))) { if (checkFloat(this.string)) {
return this.Value return this.Value
} else { } else {
return this.string return this.string