mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
export const jsonResponse = (data: object, status: number = 200) => {
|
|
return new Response(JSON.stringify(data), {
|
|
headers: {
|
|
"Content-Type": "application/json"
|
|
},
|
|
status,
|
|
});
|
|
} |