()
| 306 | } |
| 307 | |
| 308 | const buildArguments = () => { |
| 309 | const args: Record<string, string> = {}; |
| 310 | for (const [key, value] of Object.entries(config.Arguments || {})) { |
| 311 | args[key] = resolveShareXRequestValue(value as string | number | boolean, filename); |
| 312 | } |
| 313 | return args; |
| 314 | }; |
| 315 | |
| 316 | let body: BodyInit; |
| 317 |
no test coverage detected