(username: string, password: string)
| 33 | } |
| 34 | |
| 35 | function basicHeader(username: string, password: string): string { |
| 36 | const encoded = Buffer.from(`${username}:${password}`).toString('base64'); |
| 37 | return 'Basic ' + encoded; |
| 38 | } |
| 39 | async function writeServiceDefintion( |
| 40 | specRoot: string, |
| 41 | content: string, |
no outgoing calls
no test coverage detected