(arg: string, option: string)
| 91 | } |
| 92 | |
| 93 | const matchesOption = (arg: string, option: string): boolean => { |
| 94 | return arg === option || arg.startsWith(`${option}=`) |
| 95 | } |
| 96 | |
| 97 | export const parseCleanDbOptions = (args: string[]): CleanDbOptions => { |
| 98 | const options: CleanDbOptions = { |
no outgoing calls
no test coverage detected