16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
import type { RelayAdapter, RequestInput } from "../libraries/adapter.ts";
|
|
|
|
export const adapter: RelayAdapter = {
|
|
async fetch({ method, url, search, body }: RequestInput) {
|
|
const res = await fetch(`${url}${search}`, { method, headers: { "content-type": "application/json" }, body });
|
|
const data = await res.text();
|
|
if (res.status >= 400) {
|
|
throw new Error(data);
|
|
}
|
|
if (res.headers.get("content-type")?.includes("json")) {
|
|
return JSON.parse(data);
|
|
}
|
|
return data;
|
|
},
|
|
};
|