(filename: string)
| 29 | let askpassPath: string | undefined; |
| 30 | |
| 31 | function extractRequestId(filename: string): string | undefined { |
| 32 | const match = /^prompt\.(.+)\.txt$/.exec(filename); |
| 33 | return match?.[1]; |
| 34 | } |
| 35 | |
| 36 | async function ensureAskpassScript(): Promise<string> { |
| 37 | if (askpassPath) { |
no test coverage detected