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
It would be good to have something like part.get(name: string) (express-style) or part.header(name: string) (more logical, IMO) to be able to get HTTP headers using case-insensitive search. Currently, the only way to get the headers is from the part.headers array which strictly uses lower-case strings, i.e., not necessarily what came from the client.
The text was updated successfully, but these errors were encountered:
It would be good to have something like
part.get(name: string)
(express-style) orpart.header(name: string)
(more logical, IMO) to be able to get HTTP headers using case-insensitive search. Currently, the only way to get the headers is from thepart.headers
array which strictly uses lower-case strings, i.e., not necessarily what came from the client.The text was updated successfully, but these errors were encountered: