From 8450cddb376de8724faef1e2974addf6bbfcbcea Mon Sep 17 00:00:00 2001 From: Josh Duff <me@JoshDuff.com> Date: Thu, 18 Nov 2021 16:22:01 -0600 Subject: [PATCH] Add URLSearchParams to list of globals --- src/compiler/utils/names.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/utils/names.ts b/src/compiler/utils/names.ts index 8df2a7247b1b..27acc8eb788a 100644 --- a/src/compiler/utils/names.ts +++ b/src/compiler/utils/names.ts @@ -60,6 +60,7 @@ export const globals = new Set([ 'undefined', 'URIError', 'URL', + 'URLSearchParams', 'window' ]);