(values ...string)
| 789 | case []any: |
| 790 | blocks := make([]map[string]any, 0, len(typed)) |
| 791 | for _, raw := range typed { |
| 792 | if block, ok := raw.(map[string]any); ok { |
| 793 | blocks = append(blocks, block) |
| 794 | } |
| 795 | } |
| 796 | return blocks |
| 797 | default: |
| 798 | return nil |
| 799 | } |
| 800 | } |
| 801 |
no outgoing calls
no test coverage detected