(key: FlagKey, command: string | null)
| 49 | } |
| 50 | |
| 51 | export function isFlagSupportedForCommand(key: FlagKey, command: string | null): boolean { |
| 52 | return getOptionSpec(key)?.supportsCommand(command) ?? false; |
| 53 | } |
| 54 | |
| 55 | export function parseOptionValueFromSource( |
| 56 | spec: OptionSpec, |
no test coverage detected