(value: string)
| 1384 | program: Command, |
| 1385 | ) { |
| 1386 | const isOption = (value: string): boolean => value.startsWith("-"); |
| 1387 | const isGlobalOption = (value: string) => |
| 1388 | value === "--color" || |
| 1389 | value === "--no-color" || |
nothing calls this directly
no outgoing calls
no test coverage detected