-
-
Notifications
You must be signed in to change notification settings - Fork 103
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
Add FormData decorator to request #522
Conversation
Signed-off-by: Matteo Collina <hello@matteocollina.com>
@gurgunday do you know why linting is failing, it's passing locally. |
Seems like a dependency conflict
fastify-multipart/package.json Line 28 in 7d6e124
And standard requires 16 normally... Running the following will solve it: npm i eslint-plugin-n@16 |
I actually can't see why they were installed separately in this repo |
Pulling from master should fix it |
Co-authored-by: Gürgün Dayıoğlu <hey@gurgun.day> Signed-off-by: Matteo Collina <matteo.collina@gmail.com>
Signed-off-by: Matteo Collina <hello@matteocollina.com>
@kibertoad fixed |
@gurgunday may I get a final review? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
when is a new release expected? |
I wanted to release but the main branch is protected Cc @mcollina |
Adds a tiny helper to create a
FormData
object for compatibility with Web Standards.