(flags: CliFlags)
| 419 | } |
| 420 | |
| 421 | function checkFromRepository(flags: CliFlags): boolean { |
| 422 | return checkFromHistory(flags) || checkFromEdit(flags); |
| 423 | } |
| 424 | |
| 425 | function checkFromEdit(flags: CliFlags): boolean { |
| 426 | return Boolean(flags.edit) || Boolean(flags.env); |
no test coverage detected