My current code only returns 4 response headers, but I need to get all of them. Here is an example:
Example: https://jsfiddle.net/xy9dch7g/
axios
.head('https://jsonplaceholder.typicode.com/todos/1')
.then(response => {
console.log(response)
})
The headers returned by Axios can be viewed here:
I expect the headers to appear as shown in this link: