diff options
Diffstat (limited to 'js/globals.ts')
-rw-r--r-- | js/globals.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/globals.ts b/js/globals.ts index a67524f96..e65fee928 100644 --- a/js/globals.ts +++ b/js/globals.ts @@ -6,6 +6,7 @@ import { globalEval } from "./global_eval"; import { libdeno } from "./libdeno"; import * as textEncoding from "./text_encoding"; import * as timers from "./timers"; +import * as urlsearchparams from "./url_search_params"; // During the build process, augmentations to the variable `window` in this // file are tracked and created as part of default library that is built into @@ -33,6 +34,8 @@ window.TextDecoder = textEncoding.TextDecoder; window.atob = textEncoding.atob; window.btoa = textEncoding.btoa; +window.URLSearchParams = urlsearchparams.URLSearchParams; + window.fetch = fetch_.fetch; window.Headers = fetch_.DenoHeaders; |