(source map[string]string)
| 2785 | } |
| 2786 | |
| 2787 | func cloneHostAPIStringMap(source map[string]string) map[string]string { |
| 2788 | if len(source) == 0 { |
| 2789 | return nil |
| 2790 | } |
| 2791 | cloned := make(map[string]string, len(source)) |
| 2792 | maps.Copy(cloned, source) |
| 2793 | return cloned |
| 2794 | } |
no outgoing calls
no test coverage detected