(vals map[string]time.Time)
| 1080 | } |
| 1081 | |
| 1082 | func mostRecent(vals map[string]time.Time) (tag string, max time.Time) { |
| 1083 | for key, val := range vals { |
| 1084 | if val.After(max) { |
| 1085 | max = val |
| 1086 | tag = key |
| 1087 | } |
| 1088 | } |
| 1089 | return |
| 1090 | } |
| 1091 | |
| 1092 | func isNullValue(i interface{}) bool { |
| 1093 | // Del control character |
no outgoing calls
no test coverage detected