In one of the projects I started to work on the original owner uses node-fetch for http request. node-fetch provides res.headers.get('set-cookie')
but it only returns one of the set-cookie headers. (Usually you can have multiple set-cookie in a response header).
Without abandoning node-fetch, is it possible to get all set-cookie
headers from the response?