When parse headers like this: ```js const res = await fetch(...); for (let header of res.headers) { } ``` You find all headers can barely parsed correctly. This is caused by low-version `whatwg-fetch`, you have to upgrade it to v2. Or else, use another fetch library.