package errorsx func String(err error) string { out := "" if err != nil { out = err.Error() } return out }