Skip to content

Commit

Permalink
fix: correct the order of Headers imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ErosZy committed Oct 21, 2024
1 parent 8446a3b commit bd56cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/polyfills/fetch/polyfill.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { Headers } from './headers.js';


globalThis.fetch = fetch;
globalThis.Headers = Headers;
globalThis.Request = Request;
globalThis.Response = Response;
globalThis.Headers = Headers;

0 comments on commit bd56cab

Please sign in to comment.