(url: string)
| 60 | } |
| 61 | |
| 62 | async function httpsGetJson(url: string) { |
| 63 | const buffer = await httpsGetBuffer(url); |
| 64 | return JSON.parse(buffer.toString()); |
| 65 | } |
| 66 | |
| 67 | async function httpsGetZip(url: string) { |
| 68 | const buffer = await httpsGetBuffer(url); |
no test coverage detected