(value string)
| 108 | } |
| 109 | |
| 110 | func isStartWithZero(value string) bool { |
| 111 | if strings.HasPrefix(value, "0") && len(value) > 1 { |
| 112 | return true |
| 113 | } |
| 114 | return false |
| 115 | } |
| 116 | |
| 117 | func hasEvenDoubleQuotes(s string) bool { |
| 118 | count := 0 |
no outgoing calls
no test coverage detected