This commit is contained in:
Avad3 2024-07-14 06:53:06 -04:00
parent cf9e5a3418
commit 82a95e71b0

View file

@ -7,6 +7,8 @@ export const windowProxy = new Proxy(window, {
return locationProxy;
} else if (propIsString && ["window", "top", "parent", "self", "globalThis"].includes(prop)) {
return windowProxy;
} else if (propIsString && prop === "$scramjet") {
return;
}
return target[prop];