mirror of
https://github.com/honojs/hono.git
synced 2024-11-25 13:19:30 +01:00
23 lines
680 B
TypeScript
23 lines
680 B
TypeScript
export const parseBody = async (
|
|
r: Request | Response
|
|
): Promise<string | object | Record<string, string | File>> => {
|
|
const contentType = r.headers.get('Content-Type') || ''
|
|
|
|
if (contentType.includes('application/json')) {
|
|
return await r.json()
|
|
} else if (contentType.includes('application/text')) {
|
|
return await r.text()
|
|
} else if (contentType.startsWith('text')) {
|
|
return await r.text()
|
|
} else if (contentType.includes('form')) {
|
|
const form: Record<string, string | File> = {}
|
|
const data = [...(await r.formData())].reduce((acc, cur) => {
|
|
acc[cur[0]] = cur[1]
|
|
return acc
|
|
}, form)
|
|
return data
|
|
}
|
|
|
|
return r.arrayBuffer()
|
|
}
|