Helper function to compare string slices
(a, b []string)
| 466 | |
| 467 | // Helper function to compare string slices |
| 468 | func slicesEqual(a, b []string) bool { |
| 469 | if len(a) != len(b) { |
| 470 | return false |
| 471 | } |
| 472 | for i := range a { |
| 473 | if a[i] != b[i] { |
| 474 | return false |
| 475 | } |
| 476 | } |
| 477 | return true |
| 478 | } |
no outgoing calls
no test coverage detected