(name string)
| 274 | } |
| 275 | |
| 276 | func (f *FlagSet) normalizeFlagName(name string) NormalizedName { |
| 277 | n := f.GetNormalizeFunc() |
| 278 | return n(f, name) |
| 279 | } |
| 280 | |
| 281 | // Output returns the destination for usage and error messages. os.Stderr is returned if |
| 282 | // output was not set or was set to nil. |
no test coverage detected