-
Notifications
You must be signed in to change notification settings - Fork 630
New issue
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
Deprecate and remove std/mime/multipart #1778
Comments
How do we handle multipart on server side with |
You call |
It was |
What's the current plan of deprecation, now that Deno 1.20 has been released? Should we still prepare the deprecation in next version (1.21) and remove it later, or just drop it now? |
I think we should still deprecate on the next version and remove it one minor version later |
Let's keep this issue open, until the module is removed. |
How do you write multipart data using FormData? |
const form = new FormData();
form.set("foo", "bar");
const req = new Request("https://google.com", { body: form }); |
How to parse form-data when I have a boundary string and multipart string/buffer? |
Create a |
We have
FormData
that has all the same functionality as std/mime/multipart as far as I can tell.Let's deprecate this module for 1.18, and remove it for 1.19.
The text was updated successfully, but these errors were encountered: