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 147e96c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/polyfills/fetch/polyfill.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { fetch } from './fetch.js';
import { Headers } from './headers.js';
import { Request } from './request.js';
import { Response } from './response.js';
import { Headers } from './headers.js';


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

0 comments on commit 147e96c

Please sign in to comment.