(parts: string[])
| 50 | } |
| 51 | |
| 52 | function shellJoin(parts: string[]): string { |
| 53 | return parts.map(shellQuote).join(' '); |
| 54 | } |
| 55 | |
| 56 | function canonicalJson(value: unknown): unknown { |
| 57 | if (Array.isArray(value)) { |
no outgoing calls
no test coverage detected