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
When using request.formData() and obtaining a FormData object, both the "entries" and "keys" methods are not found.
import { FromData } from "undici"; const formData = new FormData(); formData.append("key", "value"); console.log("entries" in formData); // false console.log("keys" in formData); // false
console.log("entries" in formData); // true console.log("keys" in formData); // true
miniflare --version // 2.0.0-next.3
cloudflare/miniflare#91
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Description
When using request.formData() and obtaining a FormData object, both the "entries" and "keys" methods are not found.
Reproducible By
Expected Behavior
console.log("entries" in formData); // true
console.log("keys" in formData); // true
Environment
miniflare --version // 2.0.0-next.3
Additional context
cloudflare/miniflare#91
The text was updated successfully, but these errors were encountered: