type.go 86 B

12345678
  1. package util
  2. func IsNull(s string) string {
  3. if s == ""{
  4. return "0"
  5. }
  6. return s
  7. }