(content)
| 26 | } |
| 27 | |
| 28 | function shell(content) { |
| 29 | const start = '```sh'; |
| 30 | const end = '```'; |
| 31 | return `${start}${nl}${content}${nl}${end}`; |
| 32 | } |
| 33 | |
| 34 | function printAlias(aliases) { |
| 35 | if (aliases.length === 0) { |
no outgoing calls
no test coverage detected