isConfigurable returns true if name is either the name of a config field, or a valid value for a multi-choice config field.
(name string)
| 261 | // isConfigurable returns true if name is either the name of a config field, or |
| 262 | // a valid value for a multi-choice config field. |
| 263 | func isConfigurable(name string) bool { |
| 264 | _, ok := configFieldMap[name] |
| 265 | return ok |
| 266 | } |
| 267 | |
| 268 | // isBoolConfig returns true if name is either name of a boolean config field, |
| 269 | // or a valid value for a multi-choice config field. |
no outgoing calls
no test coverage detected
searching dependent graphs…