diff --git a/hwe/ts/util/simpleSerialize.ts b/hwe/ts/util/simpleSerialize.ts index 7c4c7878..db71d05a 100644 --- a/hwe/ts/util/simpleSerialize.ts +++ b/hwe/ts/util/simpleSerialize.ts @@ -9,6 +9,7 @@ export function simpleSerialize(...values : (string|number)[]): string{ } if(isInteger(value)){ result.push(`int(${value})`); + continue; } const float6 = value.toLocaleString("en-US", {maximumFractionDigits: 6}); result.push(`float(${float6})`);