mirror of
https://github.com/System-End/site.git
synced 2026-04-19 23:22:49 +00:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
/**
|
|
* useSWR() fetcher
|
|
* @param {...any} args fetcher for useSWR()
|
|
*/
|
|
|
|
export default async function fetcher(...args) {
|
|
const res = await fetch(...args)
|
|
return await res.json()
|
|
}
|