(condition: unknown, message: string)
| 39 | }; |
| 40 | |
| 41 | const assert = (condition: unknown, message: string): asserts condition => { |
| 42 | if (!condition) throw new Error(message); |
| 43 | }; |
| 44 | |
| 45 | const runCli = async ( |
| 46 | ctx: CliContext, |
no outgoing calls
no test coverage detected