(raw any, nestedKey string)
| 319 | } |
| 320 | |
| 321 | func outcomeNestedString(raw any, nestedKey string) string { |
| 322 | obj, _ := raw.(map[string]any) |
| 323 | if obj == nil { |
| 324 | return "" |
| 325 | } |
| 326 | value, _ := obj[nestedKey].(string) |
| 327 | return value |
| 328 | } |
| 329 | |
| 330 | func extractLogins(raw any) []string { |
| 331 | items, _ := raw.([]any) |
no outgoing calls
no test coverage detected