mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
fetchWorker: Array.from --> [...]
This commit is contained in:
parent
86749cc285
commit
1232c5a838
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ export const FetchWorker = {
|
||||||
{
|
{
|
||||||
status: response.status,
|
status: response.status,
|
||||||
statusText: response.statusText,
|
statusText: response.statusText,
|
||||||
headers: Array.from(response.headers.entries()),
|
headers: [...response.headers.entries()],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue