slim-sprig
slim-sprig copied to clipboard
split returns `map[string]string` which is incompatible with other functions like `dig`
split returns map[string]string which is incompatible with other functions like dig which expect map[string]interface{}
It's probably possible to use reflection so that dig works with both map[string]string and map[string]interface{}.