This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs. You can add to this using methods like append() (see Examples). In all methods of this interface, header names are matched by case-insensitive byte sequence.
Appends a new value onto an existing header inside a Headers
object, or adds the header if it does not already exist.
Deletes a header from a Headers
object.
Returns an iterator allowing to go through all key/value pairs contained in this Headers object. The both the key and value of each pairs are ByteString objects.
Returns a ByteString
sequence of all the values of a header within a Headers
object with a given name.
Returns a boolean stating whether a Headers
object contains a certain header.
Returns an iterator allowing to go through all keys contained in this Headers object. The keys are ByteString objects.
Sets a new value for an existing header inside a Headers object, or adds the header if it does not already exist.
Returns an iterator allowing to go through all values contained in this Headers object. The values are ByteString objects.
The Symbol.iterator well-known symbol specifies the default iterator for this Headers object
© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Headers