File size: 156 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 | export async function fetcher(...args) {
return await anotherFetcher(...args)
}
async function anotherFetcher(...args) {
return await fetch(...args)
}
|
1e92f2d | 1 2 3 4 5 6 7 8 | export async function fetcher(...args) {
return await anotherFetcher(...args)
}
async function anotherFetcher(...args) {
return await fetch(...args)
}
|