tasko/lib/fetcher.ts

2 lines
78 B
TypeScript
Raw Permalink Normal View History

2024-02-16 01:49:19 +00:00
export const fetcher = (url: string) => fetch(url).then((res) => res.json());