But the header obtained by the browser is always content-date。
I found in the file(@hapi/hapi/lib/response.js line 142) code that the header has been converted to lowercase. Can you add an option (for example, keepUppercase) to keep uppercase, just like append, separator, and override?
I know that the specification is not case sensitive, but there are always individual programs that make a difference.
I use
h
to set the header in thehandler
,eg.But the header obtained by the browser is always
content-date
。I found in the file(
@hapi/hapi/lib/response.js
line 142) code that the header has been converted to lowercase. Can you add an option (for example,keepUppercase
) to keep uppercase, just likeappend
,separator
, andoverride
?I know that the specification is not case sensitive, but there are always individual programs that make a difference.