/* This module is used by the /todos endpoint to make calls to api.svelte.dev, which stores todos for each user. (The data on the todo app will expire periodically; no guarantees are made. Don't use it to organise your life.) */ const base = 'https://api.svelte.dev'; export function api(method: string, resource: string, data?: Record) { return fetch(`${base}/${resource}`, { method, headers: { 'content-type': 'application/json' }, body: data && JSON.stringify(data) }); }