enabled checks if the given name has a value of "true"
(infos map[string]string, name string)
| 162 | |
| 163 | // enabled checks if the given name has a value of "true" |
| 164 | func enabled(infos map[string]string, name string) (match bool) { |
| 165 | return KeyValueMatched(infos, name, common.True) |
| 166 | } |