1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 21:02:27 +08:00

ToJson fix error handling (#16)

This commit is contained in:
rumikk
2022-01-07 10:00:05 +03:00
committed by GitHub
parent 3905c0bde1
commit a8996933bf

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