(value map[string]any)
| 323 | } |
| 324 | |
| 325 | func preferredPrimaryRowKey(value map[string]any) (string, bool) { |
| 326 | for _, key := range primaryCSVRowKeys { |
| 327 | if _, ok := value[key].([]any); ok { |
| 328 | return key, true |
| 329 | } |
| 330 | } |
| 331 | return "", false |
| 332 | } |
| 333 | |
| 334 | func singleArrayKey(value map[string]any) (string, bool) { |
| 335 | var arrayKey string |
no outgoing calls
no test coverage detected