@@ -2120,6 +2120,23 @@ prototype. This means that normal JavaScript object methods such as
21202120` Object.prototype.toString() `  and ` Object.prototype.hasOwnProperty() `  will
21212121not work.
21222122
2123+ For incoming headers:
2124+ *  The ` :status `  header is converted to ` number ` .
2125+ *  Duplicates of ` :status ` , ` :method ` , ` :authority ` , ` :scheme ` , ` :path ` ,
2126+ ` age ` , ` authorization ` , ` access-control-allow-credentials ` ,
2127+ ` access-control-max-age ` , ` access-control-request-method ` , ` content-encoding ` ,
2128+ ` content-language ` , ` content-length ` , ` content-location ` , ` content-md5 ` ,
2129+ ` content-range ` , ` content-type ` , ` date ` , ` dnt ` , ` etag ` , ` expires ` , ` from ` ,
2130+ ` if-match ` , ` if-modified-since ` , ` if-none-match ` , ` if-range ` ,
2131+ ` if-unmodified-since ` , ` last-modified ` , ` location ` , ` max-forwards ` ,
2132+ ` proxy-authorization ` , ` range ` , ` referer ` ,` retry-after ` , ` tk ` ,
2133+ ` upgrade-insecure-requests ` , ` user-agent `  or ` x-content-type-options `  are
2134+ discarded.
2135+ *  ` set-cookie `  is a string if present once or an array in case duplicates
2136+ are present.
2137+ *  ` cookie ` : the values are joined together with '; '.
2138+ *  For all other headers, the values are joined together with ', '.
2139+ 
21232140``` js 
21242141const  http2  =  require (' http2'  );
21252142const  server  =  http2 .createServer ();
0 commit comments