Get all headers matching the name
Only supports "Set-Cookie"
. All other headers are empty arrays.
Symbol
Get all headers matching the name
Only supports "Set-Cookie"
. All other headers are empty arrays.
The header name to get
An array of header values
const headers = new Headers();
headers.append("Set-Cookie", "foo=bar");
headers.append("Set-Cookie", "baz=qux");
headers.getAll("Set-Cookie"); // ["foo=bar", "baz=qux"]