(path, options)
| 26 | } |
| 27 | |
| 28 | export async function apiJson(path, options) { |
| 29 | return (await apiRequest(path, options)).json(); |
| 30 | } |
| 31 | |
| 32 | export async function apiText(path, options) { |
| 33 | return (await apiRequest(path, options)).text(); |
no test coverage detected