Class: Headers

LuCI.Headers

The Headers class is an internal utility class exposed in HTTP response objects using the response.headers property.

Source:

Methods

get(name) → {string|null}

Returns the value of the given header name. Note: Header-Names are case-insensitive.

Parameters:
Name Type Description
name string

The header name to read

Source:
Returns:

The value of the given header name or null if the header isn't present.

Type
string | null

has(name) → {boolean}

Checks whether the given header name is present. Note: Header-Names are case-insensitive.

Parameters:
Name Type Description
name string

The header name to check

Source:
Returns:

Returns true if the header name is present, false otherwise

Type
boolean