(value: string)
| 224 | } |
| 225 | |
| 226 | export function shellQuote(value: string): string { |
| 227 | return `'${value.replaceAll(`'`, `'\"'\"'`)}'` |
| 228 | } |
| 229 | |
| 230 | function delay(ms: number): Promise<void> { |
| 231 | return new Promise(resolve => { |
no outgoing calls
no test coverage detected