mirror of
https://github.com/LukeHagar/toyo-discord-bot.git
synced 2025-12-06 04:21:49 +00:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
export class JsonResponse extends Response {
|
|
constructor(body, init) {
|
|
const jsonBody = JSON.stringify(body);
|
|
init = init || {
|
|
headers: {
|
|
'content-type': 'application/json;charset=UTF-8',
|
|
},
|
|
};
|
|
super(jsonBody, init);
|
|
}
|
|
} |