ToJson fix error handling (#16)

This commit is contained in:
rumikk
2022-01-07 15:00:05 +08:00
committed by GitHub
parent 3905c0bde1
commit a8996933bf
+2 -2
View File
@@ -79,10 +79,10 @@ func ToString(value interface{}) string {
func ToJson(value interface{}) (string, error) {
res, err := json.Marshal(value)
if err != nil {
res = []byte("")
return "", err
}
return string(res), err
return string(res), nil
}
// ToFloat convert value to a float64, if input is not a float return 0.0 and error