(argv: string[])
| 13 | } |
| 14 | |
| 15 | function runFastPath(argv: string[]): boolean { |
| 16 | return runVersionFastPath(argv) || runNoCommandFastPath(argv) || runHelpFastPath(argv); |
| 17 | } |
| 18 | |
| 19 | function runVersionFastPath(argv: string[]): boolean { |
| 20 | if (argv.length !== 1 || !isVersionFlag(argv[0])) return false; |
no test coverage detected