We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NA
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'})
While the real node implementation of a server would have req.readable = true and readableLength = 4 as well as a content-length = 4 header
req.readable = true
readableLength = 4
content-length = 4
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
NA
Reproduction
Describe the bug
While the real node implementation of a server would have
req.readable = true
andreadableLength = 4
as well as acontent-length = 4
headerAdditional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered: