Skip to main content
Module

x/hono/request.ts>HonoRequest#arrayBuffer

Fast, Lightweight, Web-standards
Extremely Popular
Go to Latest
method HonoRequest.prototype.arrayBuffer
import { HonoRequest } from "https://deno.land/x/hono@v4.1.0-rc.1/request.ts";

.arrayBuffer() parse Request body as an ArrayBuffer

Examples

Example 1

app.post('/entry', async (c) => {
  const body = await c.req.arrayBuffer()
})

Returns

Promise<ArrayBuffer>