(value: string)
| 44 | |
| 45 | // Parses comma or space separated list of values, removing extra whitespace and quotes |
| 46 | export const parseListInput = (value: string): string[] => |
| 47 | value |
| 48 | .split(/[,\s]+/) |
| 49 | .map((v) => v.replace(/^['"]|['"]$/g, "")) |
| 50 | .filter(Boolean); |
| 51 | |
| 52 | export default new InteractiveCommand() |
| 53 | .command("init") |
no outgoing calls
no test coverage detected