({
command,
args,
}: {
command: string
args: Array<string>
})
| 17 | } |
| 18 | |
| 19 | export function formatCommand({ |
| 20 | command, |
| 21 | args, |
| 22 | }: { |
| 23 | command: string |
| 24 | args: Array<string> |
| 25 | }) { |
| 26 | return `${command} ${args.join(' ')}`.trim() |
| 27 | } |
| 28 | |
| 29 | // Turn GitHub URLs into raw URLs |
| 30 | export function handleSpecialURL(url: string) { |
no outgoing calls
no test coverage detected