tasko/lib/fetcher.ts

2 lines
78 B
TypeScript
Raw Normal View History

2024-02-15 20:49:19 -05:00
export const fetcher = (url: string) => fetch(url).then((res) => res.json());