From 0b2d700e98f0b30bda7598c0743163cfb584493e Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Fri, 19 Nov 2021 06:16:42 -0600 Subject: [PATCH] [fix] Add URLSearchParams to list of globals (#6938) --- 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 8df2a7247b..27acc8eb78 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' ]);