Is it useful?
var vars map[string]string
if err := config.New().FromBytes(vars, input); err != nil {
t.Fatal(err)
}
If the config output parameter is of type map[string]string, skip the reader and write the (already) existing variables map into the output.
Is it useful?
If the config output parameter is of type
map[string]string, skip the reader and write the (already) existing variables map into the output.