fix not converting to argon string

This commit is contained in:
2023-08-01 17:35:40 +02:00
parent bf40ff3611
commit 5cea62fcb4

View File

@@ -22,7 +22,7 @@ func convertToArgon(obj any) any {
} }
return ArArray(x) return ArArray(x)
case string: case string:
return x return ArString(x)
case float64: case float64:
return newNumber().SetFloat64(x) return newNumber().SetFloat64(x)
case bool: case bool: