req.get()
Returns the value of the specified header
field in this request (req
). Note that header names are case-insensitive.
req.get(header);
Assuming req
contains a header named 'myField' with value 'cat':
req.get('myField');
// -> cat
- The
header
argument is case-insensitive.- The
header
argument treats both "referrer" and "referer" as synonyms, because sp3ll1n9.