(data: Record<string, { url: string; signature: string }>, key: string, src: string)
| 140 | } |
| 141 | |
| 142 | const alias = (data: Record<string, { url: string; signature: string }>, key: string, src: string) => { |
| 143 | if (data[key]) return |
| 144 | if (!data[src]) return |
| 145 | data[key] = data[src] |
| 146 | } |
| 147 | |
| 148 | const winx = await read("latest-yml-x86_64-pc-windows-msvc", "latest.yml") |
| 149 | const wina = await read("latest-yml-aarch64-pc-windows-msvc", "latest.yml") |
no outgoing calls
no test coverage detected