diff options
Diffstat (limited to 'ext/web/12_location.js')
-rw-r--r-- | ext/web/12_location.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/web/12_location.js b/ext/web/12_location.js index 5cc850262..b3417ce6e 100644 --- a/ext/web/12_location.js +++ b/ext/web/12_location.js @@ -2,8 +2,6 @@ /// <reference path="../../core/internal.d.ts" /> -import { URL } from "ext:deno_url/00_url.js"; -import { DOMException } from "ext:deno_web/01_dom_exception.js"; import { primordials } from "ext:core/mod.js"; const { Error, @@ -17,6 +15,9 @@ const { WeakMapPrototypeSet, } = primordials; +import { URL } from "ext:deno_url/00_url.js"; +import { DOMException } from "ext:deno_web/01_dom_exception.js"; + const locationConstructorKey = Symbol("locationConstructorKey"); // The differences between the definitions of `Location` and `WorkerLocation` |