(data []byte)
| 302 | } |
| 303 | |
| 304 | func isGzip(data []byte) bool { |
| 305 | return len(data) > 2 && data[0] == 0x1f && data[1] == 0x8b |
| 306 | } |
| 307 | |
| 308 | func mergeConfigMaps(a, b map[string]interface{}, path string) (_ map[string]interface{}, err error) { |
| 309 | out := make(map[string]interface{}, len(a)) |
no outgoing calls
no test coverage detected