( input, options = {} )
| 217 | } |
| 218 | |
| 219 | export async function requestJson ( input, options = {} ) { |
| 220 | const { data } = await request( input, { |
| 221 | ...options, |
| 222 | responseType: 'json' |
| 223 | } ) |
| 224 | |
| 225 | return data |
| 226 | } |
| 227 | |
| 228 | export async function headOk ( url, options = {} ) { |
| 229 | try { |
no test coverage detected