refactor: circular deps part 4

This commit is contained in:
Nathan Walker
2025-07-08 07:27:43 -07:00
parent 1fdc933d8f
commit 4285a33d8f
9 changed files with 53 additions and 34 deletions

View File

@ -1,4 +1,9 @@
var g = global;
var g =
(typeof globalThis !== 'undefined' && globalThis) ||
(typeof self !== 'undefined' && self) ||
// eslint-disable-next-line no-undef
(typeof global !== 'undefined' && global) ||
{}
var support = {
searchParams: 'URLSearchParams' in g,