async function http(method, path, body) { const res = await fetch(path, { method, credentials: 'same-origin', headers: body ? { 'Content-Type': 'application/json' } : {}, body: body ? JSON.stringify(body) : undefined }); if (res.status === 204) return null; const ct = res.headers.get('content-type') || ''; const data = ct.includes('json') ? await res.json() : await res.text(); if (!res.ok) throw Object.assign(new Error(data?.error || res.statusText), { status: res.status, data }); return data; } export const api = { get: (p) => http('GET', p), post: (p, b) => http('POST', p, b), put: (p, b) => http('PUT', p, b), patch: (p, b) => http('PATCH', p, b), del: (p) => http('DELETE', p) };