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
From what i understand (in this thread), the mimetype and keys (in mime/type; key=value) should be lowercased but the value shouldn't?
you loose valuable information by doing this... eg:
constres=newResponse(newFormData())constblob=awaitres.blob()// multipart/form-data; boundary=----WebKitFormBoundaryLt9YzkQfzVBgA5nLconstexpected=res.headers.get('content-type')// multipart/form-data; boundary=----webkitformboundarylt9yzkqfzvbga5nlconstactual=blob.typeactual===expected// should be true.
The text was updated successfully, but these errors were encountered:
Can we complement this list with something like:
From what i understand (in this thread), the mimetype and keys (in
mime/type; key=value
) should be lowercased but the value shouldn't?you loose valuable information by doing this... eg:
The text was updated successfully, but these errors were encountered: