blob: 5db80b5398e599e4bdc7a84be79643f703bddfc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
export default async function fetcher(...args) {
try {
const response = await fetch(...args)
// if the server replies, there's always some data in json
// if there's a network error, it will throw at the previous line
const data = await response.json()
if (response.ok) {
return data
}
const error = new Error(response.statusText)
error.response = response
error.data = data
throw error
} catch (error) {
if (!error.data) {
error.data = {message: error.message}
}
throw error
}
}
|