comment out the function proxy temporarily

This commit is contained in:
Percs 2024-07-15 19:22:52 -05:00
parent 30731c289d
commit 9e1e8f9f7a

View file

@ -1,3 +1,4 @@
/*
import { rewriteJs } from "../shared"; import { rewriteJs } from "../shared";
const FunctionProxy = new Proxy(Function, { const FunctionProxy = new Proxy(Function, {
@ -32,3 +33,4 @@ window.eval = new Proxy(window.eval, {
return Reflect.apply(target, thisArg, [rewriteJs(argArray[0])]); return Reflect.apply(target, thisArg, [rewriteJs(argArray[0])]);
}, },
}); });
*/