You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to RFC1341, all 'multipart/* content types have identical syntax, they just differ in semantics. Basically all multipart/* content types are identical with multipart/form-data except that within the single boundary, the Content-Disposition header must be omitted.
The text was updated successfully, but these errors were encountered:
Hi. I wasn't planning on support for other multipart subtypes, but will see. I have to read through all of this.
Maybe an additional question. What would prevent this library for running in Node.js runtime 12.20.0?
I aim to keep my libraries aligned to actively supported Node.js' releases (current + LTS), partially because so of the tools I use for development also do so (like AVA, for example).
Hi. I wasn't planning on support for other multipart subtypes, but will see. I have to read through all of this.
Would be cool to have it. It's very complicated to make such a requests, but with this library introducing minor modifications, it would just be as easily as writing one line of code.
I aim to keep my libraries aligned to actively supported Node.js' releases (current + LTS), partially because so of the tools I use for development also do so (like AVA, for example).
Just checked, and it runs on Node.js 12.20.0 without any issues.
I'll modify the encoder.headers and remove the Content-Disposition header from the resulting body string. But it's inefficient and not really elegant (but get's the job done).
Could this library theoretically support
multipart/mixed
and related content types defined in https://learn.microsoft.com/en-us/previous-versions/office/developer/exchange-server-2010/aa493937(v=exchg.140)?According to RFC1341, all
'multipart/*
content types have identical syntax, they just differ in semantics. Basically allmultipart/*
content types are identical withmultipart/form-data
except that within the single boundary, theContent-Disposition
header must be omitted.The text was updated successfully, but these errors were encountered: