Environment
NA
Reproduction
import { createCall } from "unenv/runtime/fetch/index";
createCall(async (req, res) => {
console.log(req.readable); // false
console.log(req.readableLength); // 0
console.log(req.header["content-length"]); //undefined
})({url: '/', body: 'test'})
Describe the bug
While the real node implementation of a server would have req.readable = true and readableLength = 4 as well as a content-length = 4 header
Additional context
No response
Logs
No response
Environment
NA
Reproduction
Describe the bug
While the real node implementation of a server would have
req.readable = trueandreadableLength = 4as well as acontent-length = 4headerAdditional context
No response
Logs
No response