(text: string, identation: number)
| 158 | } |
| 159 | |
| 160 | export function indentLines(text: string, identation: number): string { |
| 161 | return transformLines(text, line => `${' '.repeat(identation)}${line}`); |
| 162 | } |
| 163 | |
| 164 | export function serializeCommandWithArgs({ |
| 165 | command, |
no test coverage detected