(t time.Time)
| 675 | } |
| 676 | |
| 677 | func rfc3339OrEmpty(t time.Time) string { |
| 678 | if t.IsZero() { |
| 679 | return "" |
| 680 | } |
| 681 | return t.UTC().Format(time.RFC3339Nano) |
| 682 | } |
| 683 | |
| 684 | func stringSlicesEqual(a, b []string) bool { |
| 685 | if len(a) != len(b) { |
no outgoing calls
no test coverage detected