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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user