(values: string[])
| 33 | } |
| 34 | |
| 35 | function buildTomlLiteralArray(values: string[]): string { |
| 36 | const items = values.map((value) => `'${escapeTomlLiteralString(value)}'`); |
| 37 | return `[${items.join(',')}]`; |
| 38 | } |
| 39 | |
| 40 | function shellQuote(value: string): string { |
| 41 | if (value.length === 0) { |
no test coverage detected