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.

Constructors

  • Parameters

    Returns Headers

Methods

  • Returns IterableIterator<[string, string], any, any>

  • Parameters

    • name: string
    • value: string

    Returns void

  • Parameters

    • name: string

    Returns void

  • Returns an iterator allowing to go through all key/value pairs contained in this object.

    Returns IterableIterator<[string, string], any, any>

  • Parameters

    • callbackfn: ((value: string, key: string, parent: Headers) => void)
        • (value, key, parent): void
        • Parameters

          • value: string
          • key: string
          • parent: Headers

          Returns void

    • OptionalthisArg: any

    Returns void

  • Parameters

    • name: string

    Returns null | string

  • Parameters

    • name: string

    Returns boolean

  • Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.

    Returns IterableIterator<string, any, any>

  • Node-fetch extension

    Returns Record<string, string[]>

  • Parameters

    • name: string
    • value: string

    Returns void

  • Returns an iterator allowing to go through all values of the key/value pairs contained in this object.

    Returns IterableIterator<string, any, any>