(m map[string]any)
| 322 | } |
| 323 | |
| 324 | func copyMap(m map[string]any) map[string]any { |
| 325 | cp := make(map[string]any, len(m)) |
| 326 | for k, v := range m { |
| 327 | cp[k] = v |
| 328 | } |
| 329 | return cp |
| 330 | } |
| 331 | |
| 332 | func contentBlocks(content any) []map[string]any { |
| 333 | switch c := content.(type) { |
no outgoing calls
no test coverage detected