(input: (string | number)[], flags: CliFlags)
| 415 | } |
| 416 | |
| 417 | function checkFromStdin(input: (string | number)[], flags: CliFlags): boolean { |
| 418 | return input.length === 0 && !checkFromRepository(flags); |
| 419 | } |
| 420 | |
| 421 | function checkFromRepository(flags: CliFlags): boolean { |
| 422 | return checkFromHistory(flags) || checkFromEdit(flags); |
no test coverage detected