(in map[string]any)
| 281 | } |
| 282 | |
| 283 | func copySchemaMap(in map[string]any) map[string]any { |
| 284 | out := make(map[string]any, len(in)+1) |
| 285 | for key, value := range in { |
| 286 | out[key] = value |
| 287 | } |
| 288 | return out |
| 289 | } |
no outgoing calls
no test coverage detected